summaryrefslogtreecommitdiffstats
path: root/common/domain
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain')
-rw-r--r--common/domain/typeimplementations_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/domain/typeimplementations_p.h b/common/domain/typeimplementations_p.h
index b7a78ac..6f77a2d 100644
--- a/common/domain/typeimplementations_p.h
+++ b/common/domain/typeimplementations_p.h
@@ -41,7 +41,7 @@ template <typename First, typename ... Tail>
41First merge(First f, Tail ...maps) 41First merge(First f, Tail ...maps)
42{ 42{
43 First map; 43 First map;
44 mergeImpl(f, maps...); 44 mergeImpl(map, f, maps...);
45 return map; 45 return map;
46} 46}
47 47