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:
Lioncash
2022-02-01 12:00:23 -05:00
parent 8eecd1d0fd
commit 478bfac8a5

View File

@@ -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;