1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef MUTATOR_AUX_H #define MUTATOR_AUX_H #include <string> #include "clang/AST/AST.h" #include "clang/Rewrite/Core/Rewriter.h" using namespace clang; namespace Devi { SourceLocation SourceLocationHasMacro (SourceLocation SL, Rewriter &Rewrite, std::string Kind); } #endif