diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-25 01:14:45 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-25 01:14:45 +0000 |
commit | a431ae6842f51bdea886806f13e28ad7860c6d5d (patch) | |
tree | 56c0db914a85f5ca3934d87e7a2309c66df94bda | |
parent | bbe0e1abe6215ede9824b337ae6cd2ce60685deb (diff) | |
download | bcm5719-llvm-a431ae6842f51bdea886806f13e28ad7860c6d5d.tar.gz bcm5719-llvm-a431ae6842f51bdea886806f13e28ad7860c6d5d.zip |
Documentation: add an idea for a (weird) clang tool
llvm-svn: 176005
-rw-r--r-- | clang/docs/ClangTools.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/docs/ClangTools.rst b/clang/docs/ClangTools.rst index d6a08289fb7..5c31e1da65b 100644 --- a/clang/docs/ClangTools.rst +++ b/clang/docs/ClangTools.rst @@ -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. |