spdlog/include/spdlog/fmt/compile.h

15 lines
304 B
C
Raw Normal View History

2021-07-14 19:28:34 +08:00
//
// 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
2021-07-14 19:28:34 +08:00
//
#include <spdlog/tweakme.h>
2021-07-14 19:28:34 +08:00
#if !defined(SPDLOG_USE_STD_FORMAT)
#include <fmt/compile.h>
2021-07-14 19:28:34 +08:00
#endif