Skip to content

Commit

Permalink
Fix compatibility with fmt 8.1.1 (fixes #1653)
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Mar 15, 2022
1 parent b5460ba commit eab75af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output-flex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ void output_flex_t::write_column(
}
} else {
throw std::runtime_error{
"Column type {} not implemented."_format(column.type())};
"Column type {} not implemented."_format(static_cast<uint8_t>(column.type()))};
}

lua_pop(lua_state(), 1);
Expand Down

0 comments on commit eab75af

Please sign in to comment.