Fixes Dictionary error.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
84dd686b61
commit
ca9c885657
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue