Merge pull request #110 from Kojoley/patch-1

is_assignable_test: Fixed copy-paste error
This commit is contained in:
jzmaddock
2019-02-26 09:20:53 +00:00
committed by GitHub

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