diff options
| author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2018-10-11 21:40:32 +0000 |
|---|---|---|
| committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2018-10-11 21:40:32 +0000 |
| commit | 724a3b728ae7e6f4b9be787336acd03a8870087f (patch) | |
| tree | 05d2079487b0a92bdcda67f594e465dea98baf36 | |
| parent | c66838aee9419777b7032815c15f6558a5b48258 (diff) | |
| download | bcm5719-llvm-724a3b728ae7e6f4b9be787336acd03a8870087f.tar.gz bcm5719-llvm-724a3b728ae7e6f4b9be787336acd03a8870087f.zip | |
[Documentation] Rephrase modernize-deprecated-ios-base-aliases description. Add clangd and clang-doc placeholders in Release Notes.
llvm-svn: 344299
| -rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 16 | ||||
| -rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/modernize-deprecated-ios-base-aliases.rst | 4 |
2 files changed, 15 insertions, 5 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 9da5ce6e916..5adb428710e 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -44,6 +44,16 @@ Major New Features ... +Improvements to clangd +---------------------- + +The improvements are... + +Improvements to clang-doc +------------------------- + +The improvements are... + Improvements to clang-query --------------------------- @@ -99,12 +109,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. + Detects usage 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. diff --git a/clang-tools-extra/docs/clang-tidy/checks/modernize-deprecated-ios-base-aliases.rst b/clang-tools-extra/docs/clang-tidy/checks/modernize-deprecated-ios-base-aliases.rst index 9460cab3576..f217ff09044 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/modernize-deprecated-ios-base-aliases.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/modernize-deprecated-ios-base-aliases.rst @@ -3,8 +3,8 @@ modernize-deprecated-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. +Detects usage of the deprecated member types of ``std::ios_base`` and replaces +those that have a non-deprecated equivalent. =================================== =========================== Deprecated member type Replacement |

