aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package-skeleton.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-12-14 13:35:30 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-12-14 20:58:13 +0300
commite6de36e1f9447c33447703b102146e0354ea6828 (patch)
tree87ba340d8aae1468b8dd8100574ba5cc49b23965 /bpkg/package-skeleton.hxx
parent254593cf0b8386b9c1ee189c19d8221f7de201f1 (diff)
Add noexcept to move constructors and move assignment operators
Diffstat (limited to 'bpkg/package-skeleton.hxx')
-rw-r--r--bpkg/package-skeleton.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/package-skeleton.hxx b/bpkg/package-skeleton.hxx
index 9f76221..b2ed752 100644
--- a/bpkg/package-skeleton.hxx
+++ b/bpkg/package-skeleton.hxx
@@ -188,8 +188,8 @@ namespace bpkg
// constructor has some special logic.
//
~package_skeleton ();
- package_skeleton (package_skeleton&&);
- package_skeleton& operator= (package_skeleton&&);
+ package_skeleton (package_skeleton&&) noexcept;
+ package_skeleton& operator= (package_skeleton&&) noexcept;
package_skeleton (const package_skeleton&);
package_skeleton& operator= (const package_skeleton&) = delete;