From dde095fab82be6178b260bae605b837a193239a8 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 13 Jan 2019 08:13:38 -0800 Subject: [PATCH] Revert "Reorder defines" This reverts commit 4a059914a965485cfac89145d7f5ba70612f60f0. --- include/fmt/core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 3431f94c..4014b8de 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -144,9 +144,6 @@ #endif #ifndef FMT_BEGIN_NAMESPACE -# define FMT_BEGIN_NAMESPACE \ - namespace fmt { \ - FMT_INLINE_NAMESPACE v5 { # if FMT_HAS_FEATURE(cxx_inline_namespaces) || FMT_GCC_VERSION >= 404 || \ FMT_MSC_VER >= 1900 # define FMT_INLINE_NAMESPACE inline namespace @@ -160,6 +157,9 @@ using namespace v5; \ } # endif +# define FMT_BEGIN_NAMESPACE \ + namespace fmt { \ + FMT_INLINE_NAMESPACE v5 { #endif #if !defined(FMT_HEADER_ONLY) && defined(_WIN32)