Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Aug 24, 2019
1 parent b918e3f commit 1488df3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/fmt/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <type_traits>

// The fmt library version in the form major * 10000 + minor * 100 + patch.
#define FMT_VERSION 50301
#define FMT_VERSION 60000

#ifdef __has_feature
# define FMT_HAS_FEATURE(x) __has_feature(x)
Expand Down Expand Up @@ -144,12 +144,12 @@
# define FMT_INLINE_NAMESPACE namespace
# define FMT_END_NAMESPACE \
} \
using namespace v5; \
using namespace v6; \
}
# endif
# define FMT_BEGIN_NAMESPACE \
namespace fmt { \
FMT_INLINE_NAMESPACE v5 {
FMT_INLINE_NAMESPACE v6 {
#endif

#if !defined(FMT_HEADER_ONLY) && defined(_WIN32)
Expand Down Expand Up @@ -389,7 +389,7 @@ constexpr basic_string_view<typename S::char_type> to_string_view(const S& s) {

namespace internal {
void to_string_view(...);
using fmt::v5::to_string_view;
using fmt::v6::to_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
Expand Down

0 comments on commit 1488df3

Please sign in to comment.