diff options
author | Edwin Vane <edwin.vane@intel.com> | 2013-04-09 20:51:47 +0000 |
---|---|---|
committer | Edwin Vane <edwin.vane@intel.com> | 2013-04-09 20:51:47 +0000 |
commit | 1cf97e71de6292e9c06cb7d992cf5493db7fc59b (patch) | |
tree | 84ecd803282d1e6e408a62df741c230429456f38 /docs | |
parent | 5771a2f0830228ac50e3473740e24d9dca67b54f (diff) |
Updating cpp11-migrate transform list in ClangTools docs
Author: Philip Dunstan <phil@phildunstan.com>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ClangTools.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/ClangTools.rst b/docs/ClangTools.rst index b7f7c7b046..39c3f5feb4 100644 --- a/docs/ClangTools.rst +++ b/docs/ClangTools.rst @@ -100,7 +100,11 @@ Currently it can: * convert loops to range-based for loops; -* convert null pointer constants (like ``NULL`` or ``0``) to C++11 ``nullptr``. +* convert null pointer constants (like ``NULL`` or ``0``) to C++11 ``nullptr``; + +* replace the type specifier in variable declarations with the ``auto`` type specifier; + +* add the ``override`` specifier to applicable member functions. Extra Clang Tools ================= |