Add inline namespace fmt::v5

This commit is contained in:
Victor Zverovich
2018-05-12 11:02:15 -07:00
parent b64b24ebc5
commit 838400d29b
12 changed files with 73 additions and 61 deletions
+2 -4
View File
@@ -11,8 +11,7 @@
#include "format.h"
#include <ostream>
namespace fmt {
FMT_BEGIN_NAMESPACE
namespace internal {
template <class Char>
@@ -149,7 +148,6 @@ inline void print(std::wostream &os, wstring_view format_str,
const Args & ... args) {
vprint(os, format_str, make_format_args<wformat_context>(args...));
}
} // namespace fmt
FMT_END_NAMESPACE
#endif // FMT_OSTREAM_H_