We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105b863 commit bf16d28Copy full SHA for bf16d28
src/string_search.h
@@ -32,7 +32,7 @@ class Vector {
32
33
// Returns true if the Vector is front-to-back, false if back-to-front.
34
// In the latter case, v[0] corresponds to the *end* of the memory range.
35
- size_t forward() const { return is_forward_; }
+ bool forward() const { return is_forward_; }
36
37
// Access individual vector elements - checks bounds in debug mode.
38
T& operator[](size_t index) const {
0 commit comments