From 6c9304b2c2e9c918aa4eafc1646d69ceba9e8a53 Mon Sep 17 00:00:00 2001 From: Vladislav Shchapov Date: Sat, 30 Jul 2022 00:40:02 +0500 Subject: [PATCH] Replace ParseContext with basic_format_parse_context Signed-off-by: Vladislav Shchapov --- include/fmt/chrono.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/chrono.h b/include/fmt/chrono.h index f74b9e1e..4440a4df 100644 --- a/include/fmt/chrono.h +++ b/include/fmt/chrono.h @@ -2049,8 +2049,8 @@ template struct formatter { } public: - template - FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { + FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) + -> decltype(ctx.begin()) { return this->do_parse(ctx.begin(), ctx.end()); }