1 .. title:: clang-tidy - modernize-use-nullptr
6 The check converts the usage of null pointer constants (e.g. ``NULL``, ``0``)
7 to use the new C++11 ``nullptr`` keyword.
42 .. option:: NullMacros
44 Comma-separated list of macro names that will be transformed along with
45 ``NULL``. By default this check will only replace the ``NULL`` macro and will
46 skip any similar user-defined macros.
53 #define MY_NULL (void*)0
67 if the :option:`NullMacros` option is set to ``MY_NULL``.