From 43c51057599dfc08d14a6784e483ed527d057cf5 Mon Sep 17 00:00:00 2001 From: Francesco Pretto Date: Sat, 25 Apr 2020 20:50:10 +0200 Subject: [PATCH] Automatically include cpp11.h in utf8.h --- source/utf8.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/utf8.h b/source/utf8.h index 82b13f5..78df235 100644 --- a/source/utf8.h +++ b/source/utf8.h @@ -31,4 +31,8 @@ DEALINGS IN THE SOFTWARE. #include "utf8/checked.h" #include "utf8/unchecked.h" +#if UTF_CPP_CPLUSPLUS >= 201103L +#include "utf8/cpp11.h" +#endif + #endif // header guard