From b61c91736fc36d7e3154e060f7fcb532592226c5 Mon Sep 17 00:00:00 2001 From: Joel FALCOU Date: Sun, 28 Sep 2025 18:04:45 +0200 Subject: [PATCH] Typo in dynamic::map --- include/rotgen/dynamic/map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rotgen/dynamic/map.hpp b/include/rotgen/dynamic/map.hpp index 6f19b7f..8bd2732 100644 --- a/include/rotgen/dynamic/map.hpp +++ b/include/rotgen/dynamic/map.hpp @@ -77,7 +77,7 @@ namespace rotgen map& operator=(map const& other) requires(!is_immutable) { - base() = static_cast(*other); + base() = static_cast(other); return *this; }