Fixing whitespace problems

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111767 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-08-22 00:59:46 +00:00
parent f11ea14460
commit c52f43e72d
652 changed files with 29155 additions and 716 deletions

View File

@@ -17,20 +17,20 @@ class move_only
#ifdef _LIBCPP_MOVE
move_only(const move_only&);
move_only& operator=(const move_only&);
#else
#else // _LIBCPP_MOVE
move_only(move_only&);
move_only& operator=(move_only&);
#endif
#endif // _LIBCPP_MOVE
public:
#ifdef _LIBCPP_MOVE
move_only(move_only&&) {}
move_only& operator=(move_only&&) {}
#else
#else // _LIBCPP_MOVE
operator std::__rv<move_only> () {return std::__rv<move_only>(*this);}
move_only(std::__rv<move_only>) {}
#endif
#endif // _LIBCPP_MOVE
move_only() {}
};