[PATCH] D51132: [clang-tidy] abseil-redundant-strcat-calls-check
Eugene Zelenko via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 23 10:11:38 PDT 2018
Eugene.Zelenko added inline comments.
================
Comment at: docs/clang-tidy/checks/abseil-redundant-strcat-calls.rst:16
+
+ string s = StrCat("A", StrCat("B", StrCat("C", "D")));
+ ==> string s = StrCat("A", "B", "C", "D");
----------------
Please add namespaces and use empty line instead of ==>
https://reviews.llvm.org/D51132
More information about the cfe-commits
mailing list