diff --git a/test/endian_store_test.cpp b/test/endian_store_test.cpp index bd045f4..eb64869 100644 --- a/test/endian_store_test.cpp +++ b/test/endian_store_test.cpp @@ -45,7 +45,7 @@ public: if( s.n_ == 0 ) return os; os << std::hex << std::setfill( '0' ) << std::uppercase; - + os << std::setw( 2 ) << +s.p_[ 0 ]; for( std::size_t i = 1; i < s.n_; ++i ) diff --git a/test/store_convenience_test.cpp b/test/store_convenience_test.cpp index 5aaebcb..47f3734 100644 --- a/test/store_convenience_test.cpp +++ b/test/store_convenience_test.cpp @@ -45,7 +45,7 @@ public: if( s.n_ == 0 ) return os; os << std::hex << std::setfill( '0' ) << std::uppercase; - + os << std::setw( 2 ) << +s.p_[ 0 ]; for( std::size_t i = 1; i < s.n_; ++i )