Fixed wrong type of special functions

This commit is contained in:
Kohei Takahashi
2018-05-13 16:01:57 +09:00
parent c508ddafea
commit aae2304699

View File

@ -51,8 +51,8 @@ struct user_provided_copy
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
struct user_provided_move
{
user_provided_move(user_provided_move const&);
user_provided_move& operator=(user_provided_move const&);
user_provided_move(user_provided_move&&);
user_provided_move& operator=(user_provided_move&&);
};
#endif