summaryrefslogtreecommitdiff
path: root/include/classbase.h
diff options
context:
space:
mode:
authorvalmat <ufabiz@gmail.com>2014-11-26 01:13:36 +0600
committervalmat <ufabiz@gmail.com>2014-11-26 01:13:36 +0600
commit7320131b8caada0e7237e33ef4e0340577627ef4 (patch)
treeff8eb589c6c5390f1380115403e6140d1bd9e118 /include/classbase.h
parentcf25fa0b9636d232c63f01824d66289ab9a89b81 (diff)
Marked `noexcept` all move constructors and assigment operators
See: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3050.html
Diffstat (limited to 'include/classbase.h')
-rw-r--r--include/classbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/classbase.h b/include/classbase.h
index 9f0bac3..1129298 100644
--- a/include/classbase.h
+++ b/include/classbase.h
@@ -85,7 +85,7 @@ public:
* Move constructor
* @param that
*/
- ClassBase(ClassBase &&that) : _impl(std::move(that._impl)) {}
+ ClassBase(ClassBase &&that) noexcept : _impl(std::move(that._impl)) {}
/**
* Destructor