mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 02:37:36 +02:00
Bump version in namespace
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user