mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-07-09 07:09:03 +00:00
mark format functions as const
This commit is contained in:
@@ -52,7 +52,7 @@ struct fmt::formatter<Shader::IR::Condition> {
|
||||
return ctx.begin();
|
||||
}
|
||||
template <typename FormatContext>
|
||||
auto format(const Shader::IR::Condition& cond, FormatContext& ctx) {
|
||||
auto format(const Shader::IR::Condition& cond, FormatContext& ctx) const {
|
||||
return fmt::format_to(ctx.out(), "{}", Shader::IR::NameOf(cond));
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user