Skip to content

Commit

Permalink
fix test fmtlib/fmt#4120
Browse files Browse the repository at this point in the history
  • Loading branch information
Arniiiii committed Aug 15, 2024
1 parent 9ef993c commit 87f2d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/enc_dec_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct fmt::formatter<MovableType> : formatter<int>
{
// parse is inherited from formatter<string_view>.
template<typename FormatContext>
auto format(const MovableType& val, FormatContext& ctx) {
auto format(const MovableType& val, FormatContext& ctx) const {
return formatter<int>::format(val.val[0].v, ctx);
}
};
Expand Down

0 comments on commit 87f2d11

Please sign in to comment.