diff options
-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 65827d20a8..d6a08289fb 100644 --- a/docs/ClangTools.rst +++ b/docs/ClangTools.rst @@ -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. |