Fixes Dictionary error.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
84dd686b61
commit
ca9c885657
@ -29,7 +29,7 @@ namespace ArbUt {
|
||||
Dictionary(const Dictionary& other) noexcept : _map(other._map) {}
|
||||
/// @brief Assignment operator
|
||||
Dictionary& operator=(const Dictionary& other) noexcept {
|
||||
if (this == &other || _map == other._map) {
|
||||
if (this == &other) {
|
||||
return *this;
|
||||
}
|
||||
_map = other._map;
|
||||
|
Loading…
x
Reference in New Issue
Block a user