mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-16 10:42:06 +08:00
19 lines
401 B
C++
19 lines
401 B
C++
//
|
|
// Copyright(c) 2016-2018 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// Include a bundled header-only copy of fmtlib or an external one.
|
|
// By default, spdlog include its own copy.
|
|
//
|
|
#include "../spdlog_config.h"
|
|
|
|
#if defined(SPDLOG_USE_STD_FORMAT) // use std::format
|
|
#include <format>
|
|
#else
|
|
#include "fmt/format.h"
|
|
#endif
|