Unverified Commit 1305cbeb authored by Riccardo Ghetta (larix)'s avatar Riccardo Ghetta (larix) Committed by GitHub

Fix MSVC2019 error C2049 when compiling with /clr (#1897)

'fmt::v7': non-inline namespace cannot be reopened as inline
parent 2d4fde3a
......@@ -180,7 +180,7 @@
#ifndef FMT_BEGIN_NAMESPACE
# if FMT_HAS_FEATURE(cxx_inline_namespaces) || FMT_GCC_VERSION >= 404 || \
FMT_MSC_VER >= 1900
(FMT_MSC_VER >= 1900 && !_MANAGED)
# define FMT_INLINE_NAMESPACE inline namespace
# define FMT_END_NAMESPACE \
} \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment