C++14 build fixes for older gcc #2333

This commit is contained in:
Kevin Slattery
2022-05-11 15:14:41 -05:00
parent 128cbe5a06
commit 5f5e70e96e
3 changed files with 24 additions and 5 deletions

View File

@@ -8,8 +8,10 @@
#include <cctype>
#include <spdlog/common.h>
#if defined(__has_include) && __has_include(<version>)
# include <version>
#if defined(__has_include)
# if __has_include(<version>)
# include <version>
# endif
#endif
#if __cpp_lib_span >= 202002L