[clang-tools-extra] r296970 - Replaced UserNullMacros with NullMacros in modernize-use-nullptr check docs
Sylvestre Ledru via cfe-commits
cfe-commits at lists.llvm.org
Sat Mar 4 06:06:26 PST 2017
Author: sylvestre
Date: Sat Mar 4 08:06:26 2017
New Revision: 296970
URL: http://llvm.org/viewvc/llvm-project?rev=296970&view=rev
Log:
Replaced UserNullMacros with NullMacros in modernize-use-nullptr check docs
By patch Peter Goldsborough on https://github.com/llvm-mirror/clang-tools-extra/pull/14
See https://github.com/llvm-mirror/clang-tools-extra/blob/2cd835ee5bcd6c4944d7e30826668ec38db40b38/clang-tidy/modernize/UseNullptrCheck.cpp#L466
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-nullptr.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-nullptr.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-nullptr.rst?rev=296970&r1=296969&r2=296970&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-nullptr.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-nullptr.rst Sat Mar 4 08:06:26 2017
@@ -39,7 +39,7 @@ transforms to:
Options
-------
-.. option:: UserNullMacros
+.. option:: NullMacros
Comma-separated list of macro names that will be transformed along with
``NULL``. By default this check will only replace the ``NULL`` macro and will
@@ -64,4 +64,4 @@ transforms to:
int *p = nullptr;
}
-if the :option:`UserNullMacros` option is set to ``MY_NULL``.
+if the :option:`NullMacros` option is set to ``MY_NULL``.
More information about the cfe-commits
mailing list