Eugene.Zelenko added inline comments.

================
Comment at: 
clang-tools-extra/clang-tidy/readability/RedundantStringInitCheck.cpp:78
+                const clang::NamedDecl *Decl, const clang::Expr *CtorExpr) {
+  const auto &SM = *Result.SourceManager;
+  const StringRef Name = Decl->getName();
----------------
Please do not use auto if type is not spelled in same statement or iterator


================
Comment at: 
clang-tools-extra/clang-tidy/readability/RedundantStringInitCheck.cpp:124
   const auto *Decl = Result.Nodes.getNodeAs<NamedDecl>("decl");
-  diag(CtorExpr->getExprLoc(), "redundant string initialization")
-      << FixItHint::CreateReplacement(CtorExpr->getSourceRange(),
-                                      Decl->getName());
+  const auto CtorExprRange = CtorSourceRange(Result, Decl, CtorExpr);
+  DiagnosticBuilder Diag =
----------------
Please do not use auto if type is not spelled in same statement or iterator


Repository:
  rCTE Clang Tools Extra

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69238/new/

https://reviews.llvm.org/D69238



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to