From 3531f6703b4802c04151339a4dd737830fc9157c Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Thu, 11 Sep 2025 10:24:05 +0200 Subject: [PATCH] Add missing const qualifiers --- test/test_std_hash.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_std_hash.cpp b/test/test_std_hash.cpp index 9b26e18..aa47f0a 100644 --- a/test/test_std_hash.cpp +++ b/test/test_std_hash.cpp @@ -18,9 +18,9 @@ main( int, char *[] ) const std::string long_string = "01001110101110110101011010000000000011110101101111111111"; - bitset_type zeroes( long_string.size(), 0 ); - bitset_type stuff( long_string ); - bitset_type one( long_string.size(), 1 ); + const bitset_type zeroes( long_string.size(), 0 ); + const bitset_type stuff( long_string ); + const bitset_type one( long_string.size(), 1 ); std::unordered_set< bitset_type > bitsets; bitsets.insert( zeroes );