diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-07-30 16:19:54 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-07-30 16:19:54 +0000 |
commit | d593cb2395ddc144844297ea12122c12e60d3bba (patch) | |
tree | 69a1ee4191da3969abc868001a62e68e7fade43a /src | |
parent | 9603167e6b7c364e1a979f5a23420b6289026f46 (diff) | |
download | manaserv-d593cb2395ddc144844297ea12122c12e60d3bba.tar.gz manaserv-d593cb2395ddc144844297ea12122c12e60d3bba.tar.bz2 manaserv-d593cb2395ddc144844297ea12122c12e60d3bba.tar.xz manaserv-d593cb2395ddc144844297ea12122c12e60d3bba.zip |
Fixed two compilation errors.
Diffstat (limited to 'src')
-rw-r--r-- | src/items.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/items.h b/src/items.h index 4d8dc94e..a3daddc2 100644 --- a/src/items.h +++ b/src/items.h @@ -42,12 +42,12 @@ class Item : public Object /** * Enumeration of available Item types. */ - static enum { - Usable, - Equipment + enum { + Usable, + Equipment }; - virtual ~Item() { } + virtual ~Item() throw () { } /** * The function called to use an item |