diff options
Diffstat (limited to 'libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp')
-rw-r--r-- | libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp b/libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp index 4e497b92a23..d673c6d673e 100644 --- a/libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp +++ b/libcxx/test/containers/associative/map/map.cons/default_noexcept.pass.cpp @@ -42,7 +42,7 @@ int main() static_assert(std::is_nothrow_default_constructible<C>::value, ""); } { - typedef std::map<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; + typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; static_assert(!std::is_nothrow_default_constructible<C>::value, ""); } { |