From 98954e1d15f43064b75fdc0829df4894a558f0bc Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 23 Jul 2015 19:22:28 +0100 Subject: [PATCH] Fix test case. --- test/has_nothrow_assign_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/has_nothrow_assign_test.cpp b/test/has_nothrow_assign_test.cpp index ee221ee..421e91d 100644 --- a/test/has_nothrow_assign_test.cpp +++ b/test/has_nothrow_assign_test.cpp @@ -27,7 +27,7 @@ struct non_assignable struct noexcept_assignable { noexcept_assignable(); - noexcept_assignable& operator=(const non_assignable&)noexcept; + noexcept_assignable& operator=(const noexcept_assignable&)noexcept; }; #endif