We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b5a3e commit bb124ffCopy full SHA for bb124ff
include/boost/move/core.hpp
@@ -262,12 +262,12 @@
262
263
#define BOOST_COPYABLE_AND_MOVABLE(TYPE)\
264
public:\
265
- inline TYPE& operator=(TYPE &t)\
+ BOOST_MOVE_FORCEINLINE TYPE& operator=(TYPE &t)\
266
{ this->operator=(const_cast<const TYPE&>(t)); return *this;}\
267
268
- inline operator ::boost::rv<TYPE>&() \
+ BOOST_MOVE_FORCEINLINE operator ::boost::rv<TYPE>&() \
269
{ return *BOOST_MOVE_TO_RV_CAST(::boost::rv<TYPE>*, this); }\
270
- inline operator const ::boost::rv<TYPE>&() const \
+ BOOST_MOVE_FORCEINLINE operator const ::boost::rv<TYPE>&() const \
271
{ return *BOOST_MOVE_TO_RV_CAST(const ::boost::rv<TYPE>*, this); }\
272
private:\
273
//
0 commit comments