aboutsummaryrefslogtreecommitdiffstats
path: root/pch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'pch.hpp')
-rw-r--r--pch.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/pch.hpp b/pch.hpp
new file mode 100644
index 0000000..6923390
--- /dev/null
+++ b/pch.hpp
@@ -0,0 +1,20 @@
+#include <cassert>
+#include <cstdlib>
+#include <dirent.h>
+#include <fstream>
+#include <iostream>
+#include <regex>
+#include <string>
+#include <vector>
+#include "clang/AST/AST.h"
+#include "clang/AST/ASTConsumer.h"
+#include "clang/ASTMatchers/ASTMatchFinder.h"
+#include "clang/ASTMatchers/ASTMatchers.h"
+#include "clang/Basic/LLVM.h"
+#include "clang/Frontend/CompilerInstance.h"
+#include "clang/Frontend/FrontendActions.h"
+#include "clang/Lex/Lexer.h"
+#include "clang/Rewrite/Core/Rewriter.h"
+#include "clang/Tooling/CommonOptionsParser.h"
+#include "clang/Tooling/Tooling.h"
+#include "llvm/Support/raw_ostream.h"