Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-02 09:08:01

0001 //
0002 // Copyright(c) 2016 Gabi Melman.
0003 // Distributed under the MIT License (http://opensource.org/licenses/MIT)
0004 //
0005 
0006 #pragma once
0007 //
0008 // include bundled or external copy of fmtlib's std support (for formatting e.g.
0009 // std::filesystem::path, std::thread::id, std::monostate, std::variant, ...)
0010 //
0011 #include <spdlog/tweakme.h>
0012 
0013 #if !defined(SPDLOG_USE_STD_FORMAT)
0014     #if !defined(SPDLOG_FMT_EXTERNAL)
0015         #ifdef SPDLOG_HEADER_ONLY
0016             #ifndef FMT_HEADER_ONLY
0017                 #define FMT_HEADER_ONLY
0018             #endif
0019         #endif
0020         #include <spdlog/fmt/bundled/std.h>
0021     #else
0022         #include <fmt/std.h>
0023     #endif
0024 #endif