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 6071cd5 commit 3c04cc6Copy full SHA for 3c04cc6
fuzzing/fuzz_direct_parse.cpp
@@ -6,6 +6,18 @@
6
// Official repository: https://github.com/boostorg/json
7
//
8
9
+#include <boost/json.hpp>
10
+
11
+#if !defined(BOOST_DESCRIBE_CXX14)
12
13
+#include <boost/config/pragma_message.hpp>
14
15
+BOOST_PRAGMA_MESSAGE( "This example requires C++14" )
16
17
+int main() {}
18
19
+#else
20
21
#include <boost/json/parse_into.hpp>
22
#include <boost/variant2/variant.hpp>
23
#include <boost/describe.hpp>
@@ -82,3 +94,4 @@ LLVMFuzzerTestOneInput(
82
94
return 0;
83
95
}
84
96
97
+#endif // !defined(BOOST_DESCRIBE_CXX14)
0 commit comments