We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e63648 commit de2e02fCopy full SHA for de2e02f
1 file changed
oss-fuzz/main.cpp
@@ -18,17 +18,23 @@
18
19
#include "cppcheck.h"
20
#include "errorlogger.h"
21
+#include "errortypes.h"
22
#include "filesettings.h"
-#include "type2.h"
23
+#include "settings.h"
24
+
25
+#include <string>
26
27
+#ifndef NO_FUZZ
28
+#include <cstddef>
29
+#include <cstdint>
30
-#ifdef NO_FUZZ
31
+#include "type2.h"
32
+#else
33
#include <cstdlib>
34
#include <fstream>
35
#include <sstream>
36
#endif
37
-enum class Color : std::uint8_t;
-
38
class DummyErrorLogger : public ErrorLogger {
39
public:
40
void reportOut(const std::string& /*outmsg*/, Color /*c*/) override {}
0 commit comments