clang-tidy checks are organized into modules. This refactoring moves the google module checks into the namespace clang::tidy::google
Details
Details
Diff Detail
Diff Detail
Event Timeline
| clang-tidy/google/AvoidCStyleCastsCheck.cpp | ||
|---|---|---|
| 21 | Please don't remove the "readability" namespace. You can put the "google" namespace around it. Same for other checks. | |
| clang-tidy/google/AvoidCStyleCastsCheck.cpp | ||
|---|---|---|
| 21 | So you'd prefer clang::tidy::google::readability? I can do that. | |
Comment Actions
Observation: This review shows why it's a good idea to split large changes into multiple patches :-). The other parts were acceptable and only this one needed some tweaking.
| clang-tidy/google/AvoidCStyleCastsCheck.cpp | ||
|---|---|---|
| 21 | Yes, exactly. And the same for runtime and build namespaces. | |
| clang-tidy/google/AvoidCStyleCastsCheck.cpp | ||
|---|---|---|
| 21 | Fixed. | |
Please don't remove the "readability" namespace. You can put the "google" namespace around it. Same for other checks.