Home
last modified time | relevance | path

Searched defs:ScopedIncrement (Results 1 – 1 of 1) sorted by relevance

/freebsd-src/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp320 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anonbe2d60470111::MatchChildASTVisitor
321 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() function
322 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement()
325 int *Depth;