mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-18 18:23:26 +00:00
added const
This commit is contained in:
@@ -207,7 +207,7 @@ struct std::formatter<omath::Color> // NOLINT(*-dcl58-cpp)
|
|||||||
|
|
||||||
constexpr auto parse(std::format_parse_context& ctx)
|
constexpr auto parse(std::format_parse_context& ctx)
|
||||||
{
|
{
|
||||||
auto it = ctx.begin();
|
const auto it = ctx.begin();
|
||||||
const auto end = ctx.end();
|
const auto end = ctx.end();
|
||||||
|
|
||||||
if (it == end || *it == '}')
|
if (it == end || *it == '}')
|
||||||
|
|||||||
Reference in New Issue
Block a user