Correct small syntax errors. (Oops.)

[SVN r800]
This commit is contained in:
Eric Friedman
2002-12-28 10:45:36 +00:00
parent a01096cc45
commit 4a1f09d293

View File

@@ -35,11 +35,11 @@ inline void swap(T& lhs, T& rhs)
{
T tmp( move(lhs) );
lhs = move(rhs);
rhs = move(tmp)
rhs = move(tmp);
}
#ifdef __GNUC__
using using boost::detail::move_swap::swap;
using boost::detail::move_swap::swap;
#endif // __GNUC_ workaround
template <typename T>