diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:26:48 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:26:48 +0000 |
| commit | 66dbf0d3116ff077b43f07499598c36f6be0bde3 (patch) | |
| tree | de8f89213cce27cc6ef3c267d5ebf80ad41b41f4 /libcxx/test/input.output/iostream.format/input.streams/iostreamclass | |
| parent | 62bfbb0974c3c12a48ba7dd435c0071de343992e (diff) | |
| download | bcm5719-llvm-66dbf0d3116ff077b43f07499598c36f6be0bde3.tar.gz bcm5719-llvm-66dbf0d3116ff077b43f07499598c36f6be0bde3.zip | |
Fixing whitespace problems
llvm-svn: 111758
Diffstat (limited to 'libcxx/test/input.output/iostream.format/input.streams/iostreamclass')
2 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/move_assign.pass.cpp b/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/move_assign.pass.cpp index 1b72bfbb034..b5da10207af 100644 --- a/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/move_assign.pass.cpp +++ b/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/move_assign.pass.cpp @@ -33,11 +33,11 @@ struct test_iostream typedef std::basic_iostream<CharT> base; test_iostream(testbuf<CharT>* sb) : base(sb) {} - test_iostream& operator=(test_iostream&& s) + test_iostream& operator=(test_iostream&& s) {base::operator=(std::move(s)); return *this;} }; -#endif +#endif // _LIBCPP_MOVE int main() { @@ -88,5 +88,5 @@ int main() assert(is2.precision() == 6); assert(is2.getloc().name() == "C"); } -#endif +#endif // _LIBCPP_MOVE } diff --git a/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/move.pass.cpp b/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/move.pass.cpp index 58e01350c3a..8d9dd067962 100644 --- a/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/move.pass.cpp +++ b/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/move.pass.cpp @@ -33,11 +33,11 @@ struct test_iostream typedef std::basic_iostream<CharT> base; test_iostream(testbuf<CharT>* sb) : base(sb) {} - test_iostream(test_iostream&& s) + test_iostream(test_iostream&& s) : base(std::move(s)) {} }; -#endif +#endif // _LIBCPP_MOVE int main() { @@ -74,5 +74,5 @@ int main() assert(is.precision() == 6); assert(is.getloc().name() == "C"); } -#endif +#endif // _LIBCPP_MOVE } |

