From 5e293bd97a3c67590b31c8113bb2746738517cea Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 11 Jun 2019 20:36:39 -0700 Subject: [PATCH] Remove unnecessary qualification --- include/fmt/core.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index c2a7e307..0cbee42d 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -716,7 +716,7 @@ template class value { custom.format = format_custom_arg< T, conditional_t::value, typename Context::template formatter_type, - internal::fallback_formatter>>; + fallback_formatter>>; } value(const named_arg_base& val) { named_arg = &val; } @@ -781,7 +781,7 @@ template struct arg_mapper { template , T>::value && - !internal::is_string::value)> + !is_string::value)> FMT_CONSTEXPR basic_string_view map(const T& val) { return basic_string_view(val); } @@ -1266,7 +1266,7 @@ void check_format_string(S); template > inline format_arg_store, Args...> make_args_checked( const S& format_str, const Args&... args) { - internal::check_format_string(format_str); + check_format_string(format_str); return {args...}; } @@ -1276,7 +1276,7 @@ std::basic_string vformat(basic_string_view format_str, template typename buffer_context::iterator vformat_to( - internal::buffer& buf, basic_string_view format_str, + buffer& buf, basic_string_view format_str, basic_format_args> args); } // namespace internal