Skip to content

Commit

Permalink
Update cmake_subdir_test/main.cpp, cmake_install_test/main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Oct 24, 2024
1 parent b40d7ef commit 2f18874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cmake_install_test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ int main()

char const str[ 6 ] = { 'f', 'o', 'o', 'b', 'a', 'r' };

boost::hash2::hash_append( hash, str );
boost::hash2::hash_append( hash, {}, str );

return hash.result() == 0xbf9cf968ul? 0: 1;
}
2 changes: 1 addition & 1 deletion test/cmake_subdir_test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ int main()

char const str[ 6 ] = { 'f', 'o', 'o', 'b', 'a', 'r' };

boost::hash2::hash_append( hash, str );
boost::hash2::hash_append( hash, {}, str );

return hash.result() == 0xbf9cf968ul? 0: 1;
}

0 comments on commit 2f18874

Please sign in to comment.