Bump version in namespace

This commit is contained in:
Victor Zverovich
2020-07-06 09:47:27 -07:00
parent 86b2f99f8c
commit 9f0b3afb79

View File

@ -188,12 +188,12 @@
# define FMT_INLINE_NAMESPACE namespace # define FMT_INLINE_NAMESPACE namespace
# define FMT_END_NAMESPACE \ # define FMT_END_NAMESPACE \
} \ } \
using namespace v6; \ using namespace v7; \
} }
# endif # endif
# define FMT_BEGIN_NAMESPACE \ # define FMT_BEGIN_NAMESPACE \
namespace fmt { \ namespace fmt { \
FMT_INLINE_NAMESPACE v6 { FMT_INLINE_NAMESPACE v7 {
#endif #endif
#if !defined(FMT_HEADER_ONLY) && defined(_WIN32) #if !defined(FMT_HEADER_ONLY) && defined(_WIN32)
@ -491,7 +491,7 @@ constexpr basic_string_view<typename S::char_type> to_string_view(const S& s) {
namespace detail { namespace detail {
void to_string_view(...); void to_string_view(...);
using fmt::v6::to_string_view; using fmt::v7::to_string_view;
// Specifies whether S is a string type convertible to fmt::basic_string_view. // Specifies whether S is a string type convertible to fmt::basic_string_view.
// It should be a constexpr function but MSVC 2017 fails to compile it in // It should be a constexpr function but MSVC 2017 fails to compile it in