diff options
author | Torbjörn Andersson | 2015-05-30 17:46:35 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2015-05-30 17:46:35 +0200 |
commit | 560bc65fc4e70dfc8f2df3affe2c6ab31afc5a74 (patch) | |
tree | b879f5a1f3387f6fc4347e02a9ec45e700cc9591 | |
parent | a7f9e4c317aecc179bca6b698922c3b835ca02cc (diff) | |
download | scummvm-rg350-560bc65fc4e70dfc8f2df3affe2c6ab31afc5a74.tar.gz scummvm-rg350-560bc65fc4e70dfc8f2df3affe2c6ab31afc5a74.tar.bz2 scummvm-rg350-560bc65fc4e70dfc8f2df3affe2c6ab31afc5a74.zip |
SHERLOCK: Silence GCC warning.
-rw-r--r-- | engines/sherlock/talk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/talk.h b/engines/sherlock/talk.h index a5f81f38ba..ebfe8f1732 100644 --- a/engines/sherlock/talk.h +++ b/engines/sherlock/talk.h @@ -109,7 +109,7 @@ enum OpcodeReturn { RET_EXIT = -1, RET_SUCCESS = 0, RET_CONTINUE = 1 }; class SherlockEngine; class Talk; -namespace Scalpel { class ScalpelUserInterface; }; +namespace Scalpel { class ScalpelUserInterface; } typedef OpcodeReturn(Talk::*OpcodeMethod)(const byte *&str); |