Skip to content

Commit 6714c39

Browse files
Merge pull request #4 from contour-terminal/improvement/fmt_ambiguous
Fix compilation with fmt
2 parents 31ce48d + af76b47 commit 6714c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boxed-cpp/boxed.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ namespace fmt
215215
template <typename FormatContext>
216216
auto format(const boxed::boxed<A, B> _value, FormatContext& ctx)
217217
{
218-
return format_to(ctx.out(), "{}", _value.value);
218+
return fmt::format_to(ctx.out(), "{}", _value.value);
219219
}
220220
};
221221
}

0 commit comments

Comments
 (0)