aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/map.h b/common/map.h
index 416a9e698b..f970ec1209 100644
--- a/common/map.h
+++ b/common/map.h
@@ -42,9 +42,11 @@ protected:
Map<Key, Value>(const Map<Key, Value> &map) {
error("No copy constructor!");
+ return 0;
}
Map<Key, Value> &operator =(const Map<Key, Value> &map) {
error("No copy operator!");
+ return 0;
}
public: