Commit 39cc99e2 authored by Victor Zverovich's avatar Victor Zverovich

Disable MSVC warning about multiple copy ctors.

parent 383a8423
......@@ -62,6 +62,10 @@
# pragma GCC diagnostic ignored "-Wlong-long"
#endif
#if _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4521)
#endif
namespace fmt {
namespace internal {
......@@ -1244,4 +1248,8 @@ inline Formatter<Write> Print(StringRef format) {
# pragma GCC diagnostic pop
#endif
#if _MSC_VER
# pragma warning(pop)
#endif
#endif // FORMAT_H_
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