summaryrefslogtreecommitdiff
path: root/absl/container/fixed_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/container/fixed_array.h')
-rw-r--r--absl/container/fixed_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/fixed_array.h b/absl/container/fixed_array.h
index b92d9056..06bc8009 100644
--- a/absl/container/fixed_array.h
+++ b/absl/container/fixed_array.h
@@ -207,7 +207,7 @@ class FixedArray {
// Overload of FixedArray::at() to return a const reference to the ith element
// of the fixed array.
const_reference at(size_type i) const {
- if (i >= size()) {
+ if (ABSL_PREDICT_FALSE(i >= size())) {
base_internal::ThrowStdOutOfRange("FixedArray::at failed bounds check");
}
return data()[i];