[PATCH] D59336: [clang-tidy] Disable google-runtime-int in Objective-C++ 🔓
Dmitri Gribenko via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 13 15:56:41 PDT 2019
gribozavr marked an inline comment as done.
gribozavr added inline comments.
================
Comment at: clang-tools-extra/clang-tidy/google/IntegerTypesCheck.cpp:57
// Find all TypeLocs. The relevant Style Guide rule only applies to C++.
- if (!getLangOpts().CPlusPlus)
+ // This check is also not applied in Objective-C++ sources as Objective-C
+ // often uses built-in integer types other than `int`.
----------------
gribozavr wrote:
> "Objective-C and Objective-C++"? Similarly in release notes.
I see -- should have read the previous sentence, which you are not changing. Never mind.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59336/new/
https://reviews.llvm.org/D59336
More information about the cfe-commits
mailing list