Merge pull request #2123 from ngie-eign:clang-inconsistent-missing-override

PiperOrigin-RevId: 234840107
This commit is contained in:
Gennadiy Civil
2019-02-20 15:22:27 -05:00
2 changed files with 4 additions and 4 deletions

View File

@@ -122,7 +122,7 @@ To provide a custom failure message, simply stream it into the macro using the
```c++
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length";
for (int i = 0; i < std::min(x.size(), y.size()); ++i) {
for (int i = 0; i < x.size(); ++i) {
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i;
}
```