Skip to content

Commit

Permalink
Update test_data.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed May 16, 2024
1 parent 48c2163 commit f242dee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ int main()
uuid u2 = u1;
BOOST_TEST_EQ( u2, u1 );

unsigned char* p = reinterpret_cast<unsigned char*>( u2.data );
unsigned char* p = reinterpret_cast<unsigned char*>( u2.data + 0 );

for( int i = 0; i < 16; ++i )
{
Expand All @@ -138,7 +138,7 @@ int main()
uuid u2 = u1;
BOOST_TEST_EQ( u2, u1 );

unsigned char const* p = reinterpret_cast<unsigned char const*>( u2.data );
unsigned char const* p = reinterpret_cast<unsigned char const*>( u2.data + 0 );

for( int i = 0; i < 16; ++i )
{
Expand All @@ -150,7 +150,7 @@ int main()
uuid const u2 = u1;
BOOST_TEST_EQ( u2, u1 );

unsigned char const* p = reinterpret_cast<unsigned char const*>( u2.data );
unsigned char const* p = reinterpret_cast<unsigned char const*>( u2.data + 0 );

for( int i = 0; i < 16; ++i )
{
Expand Down

0 comments on commit f242dee

Please sign in to comment.