GCC Fixes
svn-id: r32788
This commit is contained in:
parent
917b750839
commit
7fd6b3916f
1 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,9 @@ public:
|
|||
return _stream->readSByte();
|
||||
}
|
||||
|
||||
void loadStream(SeekableReadStream *stream) {
|
||||
void loadStream(SeekableReadStream *s) {
|
||||
delete _stream;
|
||||
_stream = stream;
|
||||
_stream = s;
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -195,7 +195,7 @@ protected:
|
|||
* Parser error always returns "false" so we can pass the return value directly
|
||||
* and break down the parsing.
|
||||
*/
|
||||
virtual bool parserError(const char *errorString, ...) GCC_PRINTF(1, 2);
|
||||
virtual bool parserError(const char *errorString, ...) GCC_PRINTF(2, 3);
|
||||
|
||||
/**
|
||||
* Skips spaces/whitelines etc. Returns true if any spaces were skipped.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue