Typo in dynamic::map

This commit is contained in:
Joel FALCOU 2025-09-28 18:04:45 +02:00
parent 9b597bf17f
commit b61c91736f

View file

@ -77,7 +77,7 @@ namespace rotgen
map& operator=(map const& other) requires(!is_immutable) map& operator=(map const& other) requires(!is_immutable)
{ {
base() = static_cast<parent const &>(*other); base() = static_cast<parent const &>(other);
return *this; return *this;
} }