We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee5190 commit 2e66339Copy full SHA for 2e66339
example/parsebyparts/parsebyparts.cpp
@@ -1,7 +1,8 @@
1
// Example of parsing JSON to document by parts.
2
3
// Using C++11 threads
4
-#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1700)
+// Temporarily disable for clang (older version) due to incompatibility with libstdc++
5
+#if (__cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1700)) && !defined(__clang__)
6
7
#include "rapidjson/document.h"
8
#include "rapidjson/error/en.h"
0 commit comments