15 lines
304 B
C
15 lines
304 B
C
//
|
|
// Copyright(c) 2016 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
//
|
|
// include bundled or external copy of fmtlib's compile-time support
|
|
//
|
|
#include <spdlog/tweakme.h>
|
|
|
|
#if !defined(SPDLOG_USE_STD_FORMAT)
|
|
#include <fmt/compile.h>
|
|
#endif
|