Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/spdlog/fmt/chrono.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 chrono support
0009 //
0010 #include <spdlog/tweakme.h>
0011 
0012 #if !defined(SPDLOG_USE_STD_FORMAT)
0013     #if !defined(SPDLOG_FMT_EXTERNAL)
0014         #ifdef SPDLOG_HEADER_ONLY
0015             #ifndef FMT_HEADER_ONLY
0016                 #define FMT_HEADER_ONLY
0017             #endif
0018         #endif
0019         #include <spdlog/fmt/bundled/chrono.h>
0020     #else
0021         #include <fmt/chrono.h>
0022     #endif
0023 #endif