diff options
Diffstat (limited to 'libcxx/test/std/containers/test_compare.h')
-rw-r--r-- | libcxx/test/std/containers/test_compare.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/test_compare.h b/libcxx/test/std/containers/test_compare.h index 35f4640f1ca..32d831d40f4 100644 --- a/libcxx/test/std/containers/test_compare.h +++ b/libcxx/test/std/containers/test_compare.h @@ -37,8 +37,8 @@ public: template <class C> class non_const_compare { -// operator() deliberately not marked as 'const' - bool operator()(const C& x,const C&y) { return x < y; } +// operator() deliberately not marked as 'const' + bool operator()(const C& x, const C& y) { return x < y; } }; |