Disable charconv on gcc/clang.

Because there's no way to check whether libstdc++ and libc++ finally
decided to implement the standard fully.
This commit is contained in:
Bartosz Taudul 2020-02-13 19:22:08 +01:00
parent 3140dbb34a
commit 25f6c5f884

View File

@ -16,6 +16,10 @@
# define NO_CHARCONV
#endif
#ifdef __GNUC__
# define NO_CHARCONV
#endif
#ifdef NO_CHARCONV
# include <stdio.h>
#endif