[clang-tools-extra] r272042 - [Clang-tidy] Alphabetical checks order in release notes.

Eugene Zelenko via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 7 11:38:42 PDT 2016


Author: eugenezelenko
Date: Tue Jun  7 13:38:42 2016
New Revision: 272042

URL: http://llvm.org/viewvc/llvm-project?rev=272042&view=rev
Log:
[Clang-tidy] Alphabetical checks order in release notes.

Highlight return statement in misc-unconventional-assign-operator documentation.

Modified:
    clang-tools-extra/trunk/docs/ReleaseNotes.rst
    clang-tools-extra/trunk/docs/clang-tidy/checks/misc-unconventional-assign-operator.rst

Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=272042&r1=272041&r2=272042&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Tue Jun  7 13:38:42 2016
@@ -182,6 +182,13 @@ identified.  The improvements since the
 
   Find suspicious usage of runtime string comparison functions.
 
+- New `misc-unconventional-assign-operator
+  <http://clang.llvm.org/extra/clang-tidy/checks/misc-unconventional-assign-operator.html>`_
+  check replacing the *misc-assign-operator-signature* check.
+
+  Does not only checks for correct signature but also for correct ``return``
+  statements (returning ``*this``)
+
 - New `misc-unused-using-decls
   <http://clang.llvm.org/extra/clang-tidy/checks/misc-unused-using-decls.html>`_ check
 
@@ -258,13 +265,6 @@ identified.  The improvements since the
 
   Finds static function and variable definitions in anonymous namespace.
 
-- New `misc-unconventional-assign-operator
-  <http://clang.llvm.org/extra/clang-tidy/checks/misc-unconventional-assign-operator.html>`_
-  check replacing the *misc-assign-operator-signature* check.
-
-  Does not only checks for correct signature but also for correct ``return``
-  statements (returning ``*this``)
-
 Fixed bugs:
 
 - Crash when running on compile database with relative source files paths.

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/misc-unconventional-assign-operator.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/misc-unconventional-assign-operator.rst?rev=272042&r1=272041&r2=272042&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/misc-unconventional-assign-operator.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/misc-unconventional-assign-operator.rst Tue Jun  7 13:38:42 2016
@@ -5,7 +5,7 @@ misc-unconventional-assign-operator
 
 
 Finds declarations of assign operators with the wrong return and/or argument
-types and definitions with good return type but wrong return statements.
+types and definitions with good return type but wrong ``return`` statements.
 
   * The return type must be ``Class&``.
   * Works with move-assign and assign by value.




More information about the cfe-commits mailing list