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

References

tools/clang/tools/extra/clang-tidy/bugprone/UnusedReturnValueCheck.cpp
   63       compoundStmt(forEach(MatchedCallExpr),
   70       ifStmt(eachOf(hasThen(MatchedCallExpr), hasElse(MatchedCallExpr)));
   70       ifStmt(eachOf(hasThen(MatchedCallExpr), hasElse(MatchedCallExpr)));
   71   auto UnusedInWhileStmt = whileStmt(hasBody(MatchedCallExpr));
   72   auto UnusedInDoStmt = doStmt(hasBody(MatchedCallExpr));
   74       forStmt(eachOf(hasLoopInit(MatchedCallExpr),
   75                      hasIncrement(MatchedCallExpr), hasBody(MatchedCallExpr)));
   75                      hasIncrement(MatchedCallExpr), hasBody(MatchedCallExpr)));
   76   auto UnusedInRangeForStmt = cxxForRangeStmt(hasBody(MatchedCallExpr));
   77   auto UnusedInCaseStmt = switchCase(forEach(MatchedCallExpr));