Fix test case.

This commit is contained in:
jzmaddock
2015-07-23 19:22:28 +01:00
parent b03c2df9c3
commit 98954e1d15

View File

@@ -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