whisperity added inline comments.
Comment at:
clang-tools-extra/clang-tidy/performance/ConstParameterValueOrRef.cpp:73
+
+ const QualType &T = Param.getType();
+
QualType is small (AFAIK it's just 2 pointers), no need for a reference on
this, it can live on th
cjdb updated this revision to Diff 366457.
cjdb retitled this revision from "[WIP][clang-tidy] adds a const-qualified
parameter check" to "[clang-tidy] adds a const-qualified parameter check".
cjdb added a comment.
removes WIP tag from patch name
Repository:
rG LLVM Github Monorepo
CHANGES S