diff options
Diffstat (limited to 'common/storage/entitystore.cpp')
-rw-r--r-- | common/storage/entitystore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp index 38ff730..33c3c73 100644 --- a/common/storage/entitystore.cpp +++ b/common/storage/entitystore.cpp | |||
@@ -66,7 +66,7 @@ template <typename First, typename ... Tail> | |||
66 | First merge(First f, Tail ...maps) | 66 | First merge(First f, Tail ...maps) |
67 | { | 67 | { |
68 | First map; | 68 | First map; |
69 | mergeImpl(f, maps...); | 69 | mergeImpl(map, f, maps...); |
70 | return map; | 70 | return map; |
71 | } | 71 | } |
72 | 72 | ||