Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer.cpp | ||
---|---|---|
537 | Can this be renamed to something describing the test case? E.g. AlreadyHasInitializer (and the case above might be renamed to AlreadyHasDefaultInitializer to differentiate the two cases) |
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer.cpp | ||
---|---|---|
550 | could you please add a test-case for initializer lists, like std::vector? Or is this not supported? |
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer.cpp | ||
---|---|---|
550 | That's not what this fix is about. |
clang-tools-extra/clang-tidy/cppcoreguidelines/PreferMemberInitializerCheck.cpp | ||
---|---|---|
252 | I'm not a fan of using bit-wise operators on booleans, but I see that | |
293–308 | I'm not a fan of double negatives either :) |
I'm not a fan of using bit-wise operators on booleans, but I see that
the code for this check was already doing that.
(See https://github.com/llvm/llvm-project/issues/40307)