andobence updated this revision to Diff 168452.
andobence added a comment.
Rebased on top of master.
I don't have commit rights.
https://reviews.llvm.org/D51332
Files:
clang-tidy/modernize/CMakeLists.txt
clang-tidy/modernize/DeprecatedIosBaseAliasesCheck.cpp
clang-tidy/modernize/Deprecate
andobence marked 2 inline comments as done.
andobence added inline comments.
Comment at: clang-tidy/modernize/DeprecatedIosBaseAliasesCheck.cpp:34
+ // provide any benefit to other languages, despite being benign.
+ if (!getLangOpts().CPlusPlus)
+return;
Jo
andobence updated this revision to Diff 165453.
andobence added a comment.
Fixed everything mentioned in comments.
https://reviews.llvm.org/D51332
Files:
clang-tidy/modernize/CMakeLists.txt
clang-tidy/modernize/DeprecatedIosBaseAliasesCheck.cpp
clang-tidy/modernize/DeprecatedIosBaseAliase
andobence created this revision.
Herald added subscribers: cfe-commits, mgorny.
This check warns the uses of the deprecated member types of std::ios_base
and replaces those that have a non-deprecated equivalent.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D51332
Files:
clan