summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/docs/clang-tidy/checks/performance-noexcept-move-constructor.rst
blob: 05f1d85f1af5a9db9f32542119361ef4f05ad43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.. title:: clang-tidy - performance-noexcept-move-constructor

performance-noexcept-move-constructor
=====================================


The check flags user-defined move constructors and assignment operators not
marked with ``noexcept`` or marked with ``noexcept(expr)`` where ``expr``
evaluates to ``false`` (but is not a ``false`` literal itself).

Move constructors of all the types used with STL containers, for example,
need to be declared ``noexcept``. Otherwise STL will choose copy constructors
instead. The same is valid for move assignment operations.
OpenPOWER on IntegriCloud