Documentation: add an idea for a (weird) clang tool

llvm-svn: 176005
This commit is contained in:
Dmitri Gribenko 2013-02-25 01:14:45 +00:00
parent bbe0e1abe6
commit a431ae6842
1 changed files with 4 additions and 0 deletions

View File

@ -120,4 +120,8 @@ Ideas for new Tools
``foo.begin()`` into ``begin(foo)`` and similarly for ``end()``, where
``foo`` is a standard container. We could also detect similar patterns for
arrays.
* A tool to remove ``auto``. Will convert ``auto`` to an explicit type or add
comments with deduced types. The motivation is that there are developers
that don't want to use ``auto`` because they are afraid that they might lose
control over their code.