Change fmt include in debug_fmt.h

pull/567/head
Jonathan G Rennison 11 months ago
parent ee5272dc4e
commit 0cb7e253e9

@ -13,6 +13,8 @@
#include "../3rdparty/fmt/format.h"
//#include "strong_typedef_type.hpp"
#include <type_traits>
template <typename E, typename Char>
struct fmt::formatter<E, Char, std::enable_if_t<std::is_enum<E>::value>> : fmt::formatter<typename std::underlying_type<E>::type> {
using underlying_type = typename std::underlying_type<E>::type;

@ -11,7 +11,7 @@
#define DEBUG_FMT_H
#include "debug.h"
#include "3rdparty/fmt/format.h"
#include "core/format.hpp"
/**
* Ouptut a line of debugging information.

Loading…
Cancel
Save