Home
last modified time | relevance | path

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

/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp203 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anon018ced360111::MatchChildASTVisitor
204 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() argument
205 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement()
208 int *Depth;