diff options
Diffstat (limited to 'test/std/containers/associative/map/map.ops/find.pass.cpp')
-rw-r--r-- | test/std/containers/associative/map/map.ops/find.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/containers/associative/map/map.ops/find.pass.cpp b/test/std/containers/associative/map/map.ops/find.pass.cpp index 17463b65740f2..225f0f406042b 100644 --- a/test/std/containers/associative/map/map.ops/find.pass.cpp +++ b/test/std/containers/associative/map/map.ops/find.pass.cpp @@ -93,7 +93,7 @@ int main() assert(r == next(m.begin(), 8)); } } -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11 { typedef std::pair<const int, double> V; typedef std::map<int, double, std::less<int>, min_allocator<V>> M; |