alexfh added inline comments.
================ Comment at: clang-tidy/bugprone/SuspiciousMemsetUsageCheck.cpp:127-130 + SourceRange LHSRange = FillChar->getSourceRange(); + SourceRange RHSRange = ByteCount->getSourceRange(); + StringRef RHSString = getAsString(Result, RHSRange); + StringRef LHSString = getAsString(Result, LHSRange); ---------------- It looks like this can be replaced with `clang::tooling::fixit::getText()` or even `createReplacement`. https://reviews.llvm.org/D32700 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits