llvm-project/clang-tools-extra/docs/clang-tidy/checks/modernize-use-using.rst

27 lines
440 B
ReStructuredText

.. title:: clang-tidy - modernize-use-using
modernize-use-using
===================
The check converts the usage of ``typedef`` with ``using`` keyword.
Before:
.. code-block:: c++
typedef int variable;
class Class{};
typedef void (Class::* MyPtrType)() const;
After:
.. code-block:: c++
using variable = int;
class Class{};
using MyPtrType = void (Class::*)() const;
This check requires using C++11 or higher to run.