Fixes Dictionary error.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-03-20 12:21:04 +01:00
parent 84dd686b61
commit ca9c885657
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace ArbUt {
Dictionary(const Dictionary& other) noexcept : _map(other._map) {} Dictionary(const Dictionary& other) noexcept : _map(other._map) {}
/// @brief Assignment operator /// @brief Assignment operator
Dictionary& operator=(const Dictionary& other) noexcept { Dictionary& operator=(const Dictionary& other) noexcept {
if (this == &other || _map == other._map) { if (this == &other) {
return *this; return *this;
} }
_map = other._map; _map = other._map;