Skip to content

Commit

Permalink
Remove noexcept from default constructor (#1589)
Browse files Browse the repository at this point in the history
  • Loading branch information
Meakk authored Aug 24, 2024
1 parent 087e90d commit 3719f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/public/options.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public:
options();
~options() = default;
options(const options& opt) = default;
options& operator=(const options& opt) noexcept = default;
options& operator=(const options& opt) = default;
options(options&& other) noexcept = default;
options& operator=(options&& other) noexcept = default;
///@}
Expand Down

0 comments on commit 3719f70

Please sign in to comment.