Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:31:10

0001 // Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
0002 // Distributed under the MIT License (http://opensource.org/licenses/MIT)
0003 
0004 #pragma once
0005 
0006 #define SPDLOG_VER_MAJOR 1
0007 #define SPDLOG_VER_MINOR 14
0008 #define SPDLOG_VER_PATCH 1
0009 
0010 #define SPDLOG_TO_VERSION(major, minor, patch) (major * 10000 + minor * 100 + patch)
0011 #define SPDLOG_VERSION SPDLOG_TO_VERSION(SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH)