diff options
Diffstat (limited to 'libcxx/test/algorithms')
3 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp b/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp index 6ecd4919f07..234879149ae 100644 --- a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp +++ b/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp @@ -20,7 +20,7 @@ #include "test_iterators.h" #if _LIBCPP_STD_VER > 11 -#define HAS_FOUR_ITERATOR_VERSION +#define HAS_FOUR_ITERATOR_VERSION #endif int main() diff --git a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp b/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp index b898220565f..047f72062eb 100644 --- a/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp +++ b/libcxx/test/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp @@ -22,15 +22,15 @@ #include "test_iterators.h" #if _LIBCPP_STD_VER > 11 -#define HAS_FOUR_ITERATOR_VERSION +#define HAS_FOUR_ITERATOR_VERSION #endif int comparison_count = 0; template <typename T> bool counting_equals ( const T &a, const T &b ) { - ++comparison_count; - return a == b; - } + ++comparison_count; + return a == b; +} int main() { diff --git a/libcxx/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp b/libcxx/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp index 8b5ba60826e..028aec5e7f2 100644 --- a/libcxx/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp +++ b/libcxx/test/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp @@ -20,7 +20,7 @@ #include "test_iterators.h" #if _LIBCPP_STD_VER > 11 -#define HAS_FOUR_ITERATOR_VERSION +#define HAS_FOUR_ITERATOR_VERSION #endif int main() |