Commit 0712a5fe authored by Hans Wennborg's avatar Hans Wennborg
Browse files

ReleaseNotes: fix sorting, spotted by Eugene Zelenko

llvm-svn: 356033
parent a73e76ab
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -252,18 +252,18 @@ Improvements to clang-tidy
  Adds ``[[nodiscard]]`` attributes (introduced in C++17) to member functions
  to highlight at compile time which return values should not be ignored.

- New :doc:`readability-isolate-decl
  <clang-tidy/checks/readability-isolate-declaration>` check.

  Detects local variable declarations declaring more than one variable and
  tries to refactor the code to one statement per declaration.

- New :doc:`readability-const-return-type
  <clang-tidy/checks/readability-const-return-type>` check.

  Checks for functions with a ``const``-qualified return type and recommends
  removal of the ``const`` keyword.

- New :doc:`readability-isolate-decl
  <clang-tidy/checks/readability-isolate-declaration>` check.

  Detects local variable declarations declaring more than one variable and
  tries to refactor the code to one statement per declaration.

- New :doc:`readability-magic-numbers
  <clang-tidy/checks/readability-magic-numbers>` check.