Fix clang-tidy performance-avoid-endl warnings in headers

This commit is contained in:
Tim Wojtulewicz 2025-06-09 16:55:15 -07:00
parent 2abb7830a5
commit 89ac0cb418

View file

@ -937,8 +937,9 @@ public:
for ( int idx = 0; idx < Capacity(); idx++ ) for ( int idx = 0; idx < Capacity(); idx++ )
if ( ! table[idx].Empty() ) { if ( ! table[idx].Empty() ) {
std::string s((char*)table[idx].GetKey(), table[idx].key_size); std::string s((char*)table[idx].GetKey(), table[idx].key_size);
f << s << std::endl; f << s << "\n";
} }
f << std::flush;
} }
} }