common/param_package: Mark move-assignment operator as noexcept
The move constructor was declared as noexcept above, so we can do this to be consistent.
This commit is contained in:
@@ -33,7 +33,7 @@ public:
|
||||
ParamPackage(ParamPackage&& other) noexcept = default;
|
||||
|
||||
ParamPackage& operator=(const ParamPackage& other) = default;
|
||||
ParamPackage& operator=(ParamPackage&& other) = default;
|
||||
ParamPackage& operator=(ParamPackage&& other) noexcept = default;
|
||||
|
||||
[[nodiscard]] std::string Serialize() const;
|
||||
[[nodiscard]] std::string Get(std::string_view key, const std::string& default_value) const;
|
||||
|
||||
Reference in New Issue
Block a user