aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-10-02 17:07:50 +0000
committerMax Horn2003-10-02 17:07:50 +0000
commit2d216530e6b22ad9e26e2260203bf272fefdeceb (patch)
tree45d46607bf376745483c51dd51d21d265ba9adec /common
parent8fbcb4ac151e0e4cf71dd1753901d04615fc20f0 (diff)
downloadscummvm-rg350-2d216530e6b22ad9e26e2260203bf272fefdeceb.tar.gz
scummvm-rg350-2d216530e6b22ad9e26e2260203bf272fefdeceb.tar.bz2
scummvm-rg350-2d216530e6b22ad9e26e2260203bf272fefdeceb.zip
fix a warning wjp gets with gcc 3.2.3
svn-id: r10541
Diffstat (limited to 'common')
-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: