Skip to content

Commit

Permalink
Avoid -Wmissing-field-initializers under GCC 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Oct 26, 2024
1 parent 1f0f81f commit afd5864
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/append_tag_invoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ int main()
{
using namespace boost::hash2;

test<fnv1a_32, default_flavor>( {}, {}, 2615243109 );
test<fnv1a_32, little_endian_flavor>( {}, {}, 2615243109 );
test<fnv1a_32, big_endian_flavor>( {}, {}, 2615243109 );
test<fnv1a_32, default_flavor>( { 0, 0 }, { 0, 0 }, 2615243109 );
test<fnv1a_32, little_endian_flavor>( { 0, 0 }, { 0, 0 }, 2615243109 );
test<fnv1a_32, big_endian_flavor>( { 0, 0 }, { 0, 0 }, 2615243109 );

test<fnv1a_32, little_endian_flavor>( { 1, 2 }, { 1, 2 }, 3738734694 );
test<fnv1a_32, big_endian_flavor>( { 1, 2 }, { 1, 2 }, 1396319868 );
Expand Down

0 comments on commit afd5864

Please sign in to comment.