Skip to content

Commit

Permalink
fix: build issue for model merger tool (VowpalWabbit#4160)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored Sep 23, 2022
1 parent 774cbc4 commit c7c14ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vowpalwabbit/model_merger/src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void logger_output_func(void* void_context, VW::io::log_level level, const std::
auto* context = static_cast<logger_context*>(void_context);
auto newline_stripped_message = message;
newline_stripped_message.erase(std::remove(newline_stripped_message.begin(), newline_stripped_message.end(), '\n'),
newline_stripped_message.cend());
newline_stripped_message.end());
switch (level)
{
case VW::io::log_level::info:
Expand Down

0 comments on commit c7c14ef

Please sign in to comment.