From c16fd1384fc14d258d2525a9a9a2e68b5027091a Mon Sep 17 00:00:00 2001 From: Beman Date: Tue, 14 May 2013 10:32:51 -0400 Subject: [PATCH] Teaks --- test/pair_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/pair_test.cpp b/test/pair_test.cpp index 66f15f0..2942e01 100644 --- a/test/pair_test.cpp +++ b/test/pair_test.cpp @@ -51,7 +51,7 @@ namespace int cpp_main(int, char * []) { - cout << "pair_test" << endl; + cout << "pair_test" << endl << endl; MyPair x(0x0102, 0x01020304); MyPair y(big_endian_value(x)); @@ -74,7 +74,7 @@ int cpp_main(int, char * []) little_endian(z); cout << "native: " << x; cout << " big: " << y; - cout << "little: " << z; + cout << "little: " << z << endl; return ::boost::report_errors(); }