diff options
| author | Jonas Toth <jonas.toth@gmail.com> | 2018-10-05 13:36:00 +0000 |
|---|---|---|
| committer | Jonas Toth <jonas.toth@gmail.com> | 2018-10-05 13:36:00 +0000 |
| commit | d0794365710a85f3c8c4f9847c80eddace29d954 (patch) | |
| tree | 8d08af9296572ef156d98a20792871b78a208709 /clang-tools-extra/docs/ReleaseNotes.rst | |
| parent | 149de8de19064a599c64975b3b218e7ce5f2aaa3 (diff) | |
| download | bcm5719-llvm-d0794365710a85f3c8c4f9847c80eddace29d954.tar.gz bcm5719-llvm-d0794365710a85f3c8c4f9847c80eddace29d954.zip | |
[clang-tidy] Replace deprecated std::ios_base aliases
This check warns the uses of the deprecated member types of std::ios_base
and replaces those that have a non-deprecated equivalent.
Patch by andobence!
Reviewd by: alexfh
Revision ID: https://reviews.llvm.org/D51332
llvm-svn: 343848
Diffstat (limited to 'clang-tools-extra/docs/ReleaseNotes.rst')
| -rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 386c74e7a81..9da5ce6e916 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -99,6 +99,12 @@ Improvements to clang-tidy Checks for uses of nested namespaces in the form of ``namespace a { namespace b { ... }}`` and offers change to syntax introduced in C++17 standard: ``namespace a::b { ... }``. + +- New :doc:`modernize-deprecated-ios-base-aliases + <clang-tidy/checks/modernize-deprecated-ios-base-aliases>` check. + + This check warns the uses of the deprecated member types of ``std::ios_base`` + and replaces those that have a non-deprecated equivalent. - New :doc:`readability-magic-numbers <clang-tidy/checks/readability-magic-numbers>` check. |

