2
0
Эх сурвалжийг харах

prefer prefix ++/-- operators for non-primitive types

escherstair 6 жил өмнө
parent
commit
bbb1f6a1dc

+ 1 - 1
contrib/gtest/test/gtest-param-test_test.cc

@@ -215,7 +215,7 @@ TEST(IteratorTest, ParamIteratorConformsToForwardIteratorConcept) {
   // Verifies that prefix and postfix operator++() advance an iterator
   // Verifies that prefix and postfix operator++() advance an iterator
   // all the same.
   // all the same.
   it2 = it;
   it2 = it;
-  it++;
+  ++it;
   ++it2;
   ++it2;
   EXPECT_TRUE(*it == *it2);
   EXPECT_TRUE(*it == *it2);
 }
 }