diff options
author | Lioncash <mathew1800@gmail.com> | 2022-10-18 13:13:26 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-10-18 16:06:50 -0400 |
commit | 0cfd90004bf058a278ff1db3442b523e2bb1b0fa (patch) | |
tree | b4c2c645662b59adbcb8c6e5ab68779a8f1f8882 /src/common/fixed_point.h | |
parent | 2cc9d94060bbf4a6395ea1ebaa06ce65bb8fc07d (diff) |
fixed_point: Mark std::swap and move constructor as noexcept
These shouldn't throw and can influence how some standard algorithms
will work.
Diffstat (limited to 'src/common/fixed_point.h')
-rw-r--r-- | src/common/fixed_point.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/fixed_point.h b/src/common/fixed_point.h index cbe76fbf1..ad0d71e50 100644 --- a/src/common/fixed_point.h +++ b/src/common/fixed_point.h @@ -269,7 +269,7 @@ public: public: // constructors FixedPoint() = default; FixedPoint(const FixedPoint&) = default; - FixedPoint(FixedPoint&&) = default; + FixedPoint(FixedPoint&&) noexcept = default; FixedPoint& operator=(const FixedPoint&) = default; template <IsArithmetic Number> @@ -454,7 +454,7 @@ public: // conversion to basic types } public: - constexpr void swap(FixedPoint& rhs) { + constexpr void swap(FixedPoint& rhs) noexcept { using std::swap; swap(data_, rhs.data_); } |