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 | 0a8dead5303bd0cabebf07ab4e8d4f838787e8f1 (patch) | |
tree | a35f202def9ff58b53b2b9000bf2d7ff426dc566 /docs | |
parent | c1d0af1f550fdd59e6ce36f25bae6c735de90071 (diff) |
Documentation: add an idea for a (weird) clang tool
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ClangTools.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ClangTools.rst b/docs/ClangTools.rst index d6a08289fb..5c31e1da65 100644 --- a/docs/ClangTools.rst +++ b/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. |