Skip to content

Commit

Permalink
Fix build error due to unrecognized size_t.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelesh committed Oct 30, 2023
1 parent 63b5445 commit 3de2225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resolve/utilities/logger/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace ReSolve
*/
void Logger::updateVerbosity(std::vector<std::ostream*>& output_streams)
{
for (size_t i = NONE; i <= EVERYTHING; ++i)
for (std::size_t i = NONE; i <= EVERYTHING; ++i)
{
output_streams[i] = i > verbosity_ ? &nullstream_ : logger_;
}
Expand Down

0 comments on commit 3de2225

Please sign in to comment.