Instantiator
Generate c++ template instantiations
Loading...
Searching...
No Matches
DeleteInstantiations.hpp
Go to the documentation of this file.
1#ifndef DELETE_INSTANTIATIONS_H_
2#define DELETE_INSTANTIATIONS_H_
3
4#include "clang/ASTMatchers/ASTMatchFinder.h"
5
6// forward declaration
7namespace clang {
8class Rewriter;
9}
10
32class DeleteInstantiations : public clang::ast_matchers::MatchFinder::MatchCallback
33{
34public:
36 clang::Rewriter* rewriter;
37 virtual void run(const clang::ast_matchers::MatchFinder::MatchResult& Result) override;
38};
39
40#endif
MatchCallback for template instantiation deletions.
virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override