Skip to content

Commit

Permalink
attempt to fix windows build for example
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Jul 7, 2023
1 parent d6041ef commit a465ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example_user_defined_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ struct fmtquill::formatter<User4>
template <typename FormatContext>
auto format(User4 const& user, FormatContext& ctx)
{
return format_to(ctx.out(), "User: {} {}, Age: {}", user.name, user.surname, user.age);
return fmtquill::format_to(ctx.out(), "User: {} {}, Age: {}", user.name, user.surname, user.age);
}
};

Expand Down

0 comments on commit a465ac4

Please sign in to comment.