Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-02-13 21:22:08 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-02-13 21:22:08 +0300
commit25f6c5f884f62768693d911e945303e2e02df291 (patch)
tree6f4ee1d5674a1e60eedd0b702a5f1c857d3a34ab /server/TracyPrint.hpp
parent3140dbb34af29debe1f10ec6412177f1b8d83d3e (diff)
Disable charconv on gcc/clang.
Because there's no way to check whether libstdc++ and libc++ finally decided to implement the standard fully.
Diffstat (limited to 'server/TracyPrint.hpp')
-rw-r--r--server/TracyPrint.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/TracyPrint.hpp b/server/TracyPrint.hpp
index da513767..2a03b6ed 100644
--- a/server/TracyPrint.hpp
+++ b/server/TracyPrint.hpp
@@ -16,6 +16,10 @@
# define NO_CHARCONV
#endif
+#ifdef __GNUC__
+# define NO_CHARCONV
+#endif
+
#ifdef NO_CHARCONV
# include <stdio.h>
#endif