mirror of
https://github.com/serge1/ELFIO.git
synced 2025-03-21 07:20:45 +00:00
Fix warnings in VS 16.7.2
This commit is contained in:
parent
3d007e35a4
commit
2cf9fdd64a
@ -273,7 +273,7 @@ BOOST_AUTO_TEST_CASE( load32 )
|
||||
|
||||
|
||||
note_section_accessor notes( reader, sec );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1 );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1u );
|
||||
|
||||
checkNote( notes, 0, 1, std::string( "GNU" ), 16 );
|
||||
}
|
||||
@ -382,7 +382,7 @@ BOOST_AUTO_TEST_CASE( load64 )
|
||||
|
||||
|
||||
note_section_accessor notes( reader, sec );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1 );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1u );
|
||||
|
||||
checkNote( notes, 0, 1, std::string( "GNU" ), 16 );
|
||||
}
|
||||
@ -693,11 +693,12 @@ BOOST_AUTO_TEST_CASE( test_ppc )
|
||||
|
||||
|
||||
note_section_accessor notes( reader, sec );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1 );
|
||||
BOOST_CHECK_EQUAL( notes.get_notes_num(), 1u );
|
||||
|
||||
checkNote( notes, 0, 1, std::string( "GNU" ), 16 );
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
BOOST_AUTO_TEST_CASE( test_dummy_out_i386_32 )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user