From 25f6c5f884f62768693d911e945303e2e02df291 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 13 Feb 2020 19:22:08 +0100 Subject: [PATCH] Disable charconv on gcc/clang. Because there's no way to check whether libstdc++ and libc++ finally decided to implement the standard fully. --- server/TracyPrint.hpp | 4 ++++ 1 file changed, 4 insertions(+) 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 #endif