diff options
author | Max Horn | 2003-10-02 17:07:50 +0000 |
---|---|---|
committer | Max Horn | 2003-10-02 17:07:50 +0000 |
commit | 2d216530e6b22ad9e26e2260203bf272fefdeceb (patch) | |
tree | 45d46607bf376745483c51dd51d21d265ba9adec | |
parent | 8fbcb4ac151e0e4cf71dd1753901d04615fc20f0 (diff) | |
download | scummvm-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
-rw-r--r-- | common/map.h | 2 |
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: |