From 6a1c643adbc5e229c9c541e69d4a4465ffcf5537 Mon Sep 17 00:00:00 2001 From: Jin S Date: Tue, 28 Nov 2023 22:06:37 -0500 Subject: [PATCH] fix nits --- include/fmt/std.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fmt/std.h b/include/fmt/std.h index c9805acb..7b92cea5 100644 --- a/include/fmt/std.h +++ b/include/fmt/std.h @@ -78,7 +78,7 @@ #if FMT_CPP_LIB_FILESYSTEM FMT_BEGIN_NAMESPACE - + namespace detail { template auto get_path_string( @@ -142,9 +142,9 @@ template struct formatter { auto specs = specs_; auto path_type = path_type_; # ifdef _WIN32 - auto path_string = (path_type == 'n') ? p.native() : p.generic_wstring(); + auto path_string = path_type == 'n' ? p.native() : p.generic_wstring(); # else - auto path_string = (path_type == 'n') ? p.native() : p.generic_string(); + auto path_string = path_type == 'n' ? p.native() : p.generic_string(); # endif detail::handle_dynamic_spec(specs.width, width_ref_,