Commit a3ba6b4f authored by Victor Zverovich's avatar Victor Zverovich

Disable the fmt(...) macro by default (#853)

parent 86716894
...@@ -3859,7 +3859,7 @@ FMT_END_NAMESPACE ...@@ -3859,7 +3859,7 @@ FMT_END_NAMESPACE
return S{}; \ return S{}; \
}() }()
#ifndef FMT_NO_FMT_STRING_ALIAS #if defined(FMT_STRING_ALIAS) && FMT_STRING_ALIAS
/** /**
\rst \rst
Constructs a compile-time format string. Constructs a compile-time format string.
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
// //
// For the license information refer to format.h. // For the license information refer to format.h.
#define FMT_STRING_ALIAS 1
#include "fmt/ostream.h" #include "fmt/ostream.h"
#include <sstream> #include <sstream>
......
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