diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-08-22 15:42:36 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-08-23 11:48:53 +0200 |
commit | 63dfd069b3a957361881c12ccba38c5a23b9a42f (patch) | |
tree | e7a9bd1027b19f44a7c58ea9c445ded435c838bc /sd/inc | |
parent | 61ed17cafc90d9b4303b52260f729638eed107c7 (diff) |
Mark move ctors/assignments noexcept
This should enable using move semantics where possible e.g. in standard
containers.
According to https://en.cppreference.com/w/cpp/language/move_constructor:
To make strong exception guarantee possible, user-defined move
constructors should not throw exceptions. For example, std::vector
relies on std::move_if_noexcept to choose between move and copy
when the elements need to be relocated.
Change-Id: I6e1e1cdd5cd430b139ffa2fa7031fb0bb625decb
Reviewed-on: https://gerrit.libreoffice.org/77957
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/OutlinerIterator.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/inc/OutlinerIterator.hxx b/sd/inc/OutlinerIterator.hxx index d9033bbfb8cc..dcc8238d4271 100644 --- a/sd/inc/OutlinerIterator.hxx +++ b/sd/inc/OutlinerIterator.hxx @@ -81,7 +81,7 @@ public: implementation object. */ Iterator (const Iterator& rIterator); - Iterator (Iterator&& rIterator); + Iterator(Iterator&& rIterator) noexcept; /** Create a new iterator with the implementation object being the provided one. @@ -98,7 +98,7 @@ public: The iterator which to assign from. */ Iterator& operator= (const Iterator& rIterator); - Iterator& operator= (Iterator&& rIterator); + Iterator& operator=(Iterator&& rIterator) noexcept; /** Return the current position of the iterator. @return |