reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp
   79     return (ForLoop->getInc() &&
   80             ExprMutationAnalyzer(*ForLoop->getInc(), *Context)
   82            (ForLoop->getBody() &&
   83             ExprMutationAnalyzer(*ForLoop->getBody(), *Context)
   85            (ForLoop->getCond() &&
   86             ExprMutationAnalyzer(*ForLoop->getCond(), *Context).isMutated(Var));