1
0
forked from boostorg/move

Merge pull request #20 from chrahunt/chrahunt-fix-aix-build

Move may_alias attribute for xlC++ compatibility.
This commit is contained in:
Ion Gaztañaga
2018-09-09 00:17:32 +02:00
committed by GitHub

View File

@@ -70,7 +70,7 @@
//
//////////////////////////////////////////////////////////////////////////////
template <class T>
class rv
class BOOST_MOVE_ATTRIBUTE_MAY_ALIAS rv
: public ::boost::move_detail::if_c
< ::boost::move_detail::is_class<T>::value
, T
@@ -81,7 +81,7 @@
~rv() throw();
rv(rv const&);
void operator=(rv const&);
} BOOST_MOVE_ATTRIBUTE_MAY_ALIAS;
};
//////////////////////////////////////////////////////////////////////////////