diff options
Diffstat (limited to 'test/std/containers/associative/set/count.pass.cpp')
-rw-r--r-- | test/std/containers/associative/set/count.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/containers/associative/set/count.pass.cpp b/test/std/containers/associative/set/count.pass.cpp index 32fe0b8bcee9c..ddc913910b5e8 100644 --- a/test/std/containers/associative/set/count.pass.cpp +++ b/test/std/containers/associative/set/count.pass.cpp @@ -56,7 +56,7 @@ int main() r = m.count(4); assert(r == 0); } -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11 { typedef int V; typedef std::set<int, std::less<int>, min_allocator<int>> M; |