File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,6 @@ template <bool IsConst> class DynamicRecursiveASTVisitorBase {
254
254
virtual bool Traverse##CLASS##Decl(MaybeConst<CLASS##Decl> *D);
255
255
#include " clang/AST/DeclNodes.inc"
256
256
257
- #define ABSTRACT_DECL (DECL )
258
257
#define DECL (CLASS, BASE ) \
259
258
bool WalkUpFrom##CLASS##Decl(MaybeConst<CLASS##Decl> *D); \
260
259
virtual bool Visit##CLASS##Decl(MaybeConst<CLASS##Decl> *D) { return true ; }
@@ -276,7 +275,6 @@ template <bool IsConst> class DynamicRecursiveASTVisitorBase {
276
275
virtual bool Traverse##CLASS##Type(MaybeConst<CLASS##Type> *T);
277
276
#include " clang/AST/TypeNodes.inc"
278
277
279
- #define ABSTRACT_TYPE (CLASS, BASE )
280
278
#define TYPE (CLASS, BASE ) \
281
279
bool WalkUpFrom##CLASS##Type(MaybeConst<CLASS##Type> *T); \
282
280
virtual bool Visit##CLASS##Type(MaybeConst<CLASS##Type> *T) { return true ; }
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ template <bool Const> struct Impl : RecursiveASTVisitor<Impl<Const>> {
221
221
return Visitor.Traverse ##CLASS##Decl (D); \
222
222
}
223
223
#include " clang/AST/DeclNodes.inc"
224
- # define ABSTRACT_DECL ( DECL )
224
+
225
225
#define DECL (CLASS, BASE ) \
226
226
bool Visit##CLASS##Decl(CLASS##Decl *D) { \
227
227
return Visitor.Visit ##CLASS##Decl (D); \
@@ -246,7 +246,6 @@ template <bool Const> struct Impl : RecursiveASTVisitor<Impl<Const>> {
246
246
}
247
247
#include " clang/AST/TypeNodes.inc"
248
248
249
- #define ABSTRACT_TYPE (CLASS, BASE )
250
249
#define TYPE (CLASS, BASE ) \
251
250
bool Visit##CLASS##Type(CLASS##Type *T) { \
252
251
return Visitor.Visit ##CLASS##Type (T); \
You can’t perform that action at this time.
0 commit comments