Including cinttypes only when supported by compiler

This commit is contained in:
xawotihs
2019-09-07 21:44:43 +02:00
parent d9452b02d9
commit 4605d38982
+2
View File
@@ -12,7 +12,9 @@
#include <sstream> #include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>
#if (__cplusplus > 199711L) || (_MSC_VER >= 1700)
#include <cinttypes> #include <cinttypes>
#endif
#include "config.h" #include "config.h"
#include "DebugRoutines.h" #include "DebugRoutines.h"