diff options
Diffstat (limited to 'libcxx/test/containers/MoveOnly.h')
-rw-r--r-- | libcxx/test/containers/MoveOnly.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/containers/MoveOnly.h b/libcxx/test/containers/MoveOnly.h index b7d62b71374..c3468387e24 100644 --- a/libcxx/test/containers/MoveOnly.h +++ b/libcxx/test/containers/MoveOnly.h @@ -21,8 +21,8 @@ public: int get() const {return data_;} - bool operator==(const MoveOnly& x) const {return data_ == x.data_;} - bool operator< (const MoveOnly& x) const {return data_ < x.data_;} + bool operator==(const MoveOnly& x) const {return data_ == x.data_;} + bool operator< (const MoveOnly& x) const {return data_ < x.data_;} }; namespace std { @@ -36,6 +36,6 @@ struct hash<MoveOnly> } -#endif +#endif // _LIBCPP_MOVE -#endif +#endif // MOVEONLY_H |