projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbe0e1a
)
Documentation: add an idea for a (weird) clang tool
author
Dmitri Gribenko
<gribozavr@gmail.com>
Mon, 25 Feb 2013 01:14:45 +0000
(
01:14
+0000)
committer
Dmitri Gribenko
<gribozavr@gmail.com>
Mon, 25 Feb 2013 01:14:45 +0000
(
01:14
+0000)
llvm-svn: 176005
clang/docs/ClangTools.rst
patch
|
blob
|
history
diff --git
a/clang/docs/ClangTools.rst
b/clang/docs/ClangTools.rst
index d6a08289fb7cffd741649db65ed01697cec1e26b..5c31e1da65b1a46a2d02ac65b2a286a5382e2144 100644
(file)
--- 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.