forked from boostorg/utility
Correct small syntax errors. (Oops.)
[SVN r800]
This commit is contained in:
@@ -35,11 +35,11 @@ inline void swap(T& lhs, T& rhs)
|
|||||||
{
|
{
|
||||||
T tmp( move(lhs) );
|
T tmp( move(lhs) );
|
||||||
lhs = move(rhs);
|
lhs = move(rhs);
|
||||||
rhs = move(tmp)
|
rhs = move(tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
using using boost::detail::move_swap::swap;
|
using boost::detail::move_swap::swap;
|
||||||
#endif // __GNUC_ workaround
|
#endif // __GNUC_ workaround
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
Reference in New Issue
Block a user