aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/parse.h
diff options
context:
space:
mode:
authorMax Horn2007-04-25 19:31:23 +0000
committerMax Horn2007-04-25 19:31:23 +0000
commit00b9bc7b36682365e64d710b4e843659bef373da (patch)
tree27f48e6cb51c37d595a6dd04d9fc1d773f4f766c /engines/gob/parse.h
parent8306e0ebe5bddd5945bdfb436fcfb7148160e029 (diff)
downloadscummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.gz
scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.bz2
scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.zip
Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel)
svn-id: r26594
Diffstat (limited to 'engines/gob/parse.h')
-rw-r--r--engines/gob/parse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/parse.h b/engines/gob/parse.h
index 27a6f50b1c..22853e24f0 100644
--- a/engines/gob/parse.h
+++ b/engines/gob/parse.h
@@ -36,7 +36,7 @@ public:
virtual int16 parseExpr(byte stopToken, byte *resultPtr) = 0;
Parse(GobEngine *vm);
- virtual ~Parse() {};
+ virtual ~Parse() {}
protected:
enum PointerType {
@@ -56,7 +56,7 @@ protected:
class Parse_v1 : public Parse {
public:
Parse_v1(GobEngine *vm);
- virtual ~Parse_v1() {};
+ virtual ~Parse_v1() {}
virtual int16 parseVarIndex(void);
virtual int16 parseValExpr(byte stopToken = 99);
@@ -66,7 +66,7 @@ public:
class Parse_v2 : public Parse_v1 {
public:
Parse_v2(GobEngine *vm);
- virtual ~Parse_v2() {};
+ virtual ~Parse_v2() {}
virtual int16 parseVarIndex(void);
virtual int16 parseValExpr(byte stopToken = 99);