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
llvm-svn: 296970
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
int *p = nullptr;
}
-if the :option:`UserNullMacros` option is set to ``MY_NULL``.
+if the :option:`NullMacros` option is set to ``MY_NULL``.