Documentation: add an idea for an automatic refactoring

llvm-svn: 176000
This commit is contained in:
Dmitri Gribenko 2013-02-24 19:04:36 +00:00
parent 26d1b1db23
commit 2b125832e3
1 changed files with 4 additions and 0 deletions

View File

@ -116,4 +116,8 @@ Ideas for new Tools
* C++ cast conversion tool. Will convert C-style casts (``(type) value``) to
appropriate C++ cast (``static_cast``, ``const_cast`` or
``reinterpret_cast``).
* Non-member ``begin()`` and ``end()`` conversion tool. Will convert
``foo.begin()`` into ``begin(foo)`` and similarly for ``end()``, where
``foo`` is a standard container. We could also detect similar patterns for
arrays.