fix a warning wjp gets with gcc 3.2.3

svn-id: r10541
This commit is contained in:
Max Horn 2003-10-02 17:07:50 +00:00
parent 8fbcb4ac15
commit 2d216530e6

View File

@ -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: