We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f47041 commit f340ab4Copy full SHA for f340ab4
lib/IRGen/GenClangDecl.cpp
@@ -13,7 +13,7 @@
13
#include "IRGenModule.h"
14
#include "clang/AST/Decl.h"
15
#include "clang/AST/DeclGroup.h"
16
-#include "clang/AST/DataRecursiveASTVisitor.h"
+#include "clang/AST/RecursiveASTVisitor.h"
17
#include "clang/CodeGen/ModuleBuilder.h"
18
#include "llvm/ADT/SmallPtrSet.h"
19
@@ -22,7 +22,7 @@ using namespace irgen;
22
23
namespace {
24
class ClangDeclRefFinder
25
- : public clang::DataRecursiveASTVisitor<ClangDeclRefFinder> {
+ : public clang::RecursiveASTVisitor<ClangDeclRefFinder> {
26
std::function<void(const clang::DeclRefExpr *)> callback;
27
public:
28
template <typename Fn>
0 commit comments