[cfe-commits] r171667 - /cfe/trunk/docs/ClangTools.rst

Dmitri Gribenko gribozavr at gmail.com
Sun Jan 6 12:19:09 PST 2013


Author: gribozavr
Date: Sun Jan  6 14:19:09 2013
New Revision: 171667

URL: http://llvm.org/viewvc/llvm-project?rev=171667&view=rev
Log:
ClangTools doc: add ideas for new tools in clang-tools-extra to ensure that
these ideas don't get lost

Modified:
    cfe/trunk/docs/ClangTools.rst

Modified: cfe/trunk/docs/ClangTools.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangTools.rst?rev=171667&r1=171666&r2=171667&view=diff
==============================================================================
--- cfe/trunk/docs/ClangTools.rst (original)
+++ cfe/trunk/docs/ClangTools.rst Sun Jan  6 14:19:09 2013
@@ -89,3 +89,14 @@
 they'll be tracked here. The focus of this documentation is on the scope
 and features of the tools for other tool developers; each tool should
 provide its own user-focused documentation.
+
+Ideas for new Tools
+-------------------
+
+* C++11 null pointer conversion tool.  Will convert all null pointer constants
+  (like ``NULL`` or ``0``) to C++11 ``nullptr``.
+
+* C++ cast conversion tool.  Will convert C-style casts (``(type) value``) to
+  appropriate C++ cast (``static_cast``, ``const_cast`` or
+  ``reinterpret_cast``).
+





More information about the cfe-commits mailing list