mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Fixed CParser::SkipSpaces (thanks cbpporter)
git-svn-id: svn://ultimatepp.org/upp/trunk@7661 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
505c1377c7
commit
f01bd2cb7d
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ public:
|
|||
void Set(const char *ptr, const char *fn, int line = 1);
|
||||
void Set(const char *ptr);
|
||||
|
||||
CParser& SkipSpaces(bool b = true) { skipspaces = true; return *this; }
|
||||
CParser& SkipSpaces(bool b = true) { skipspaces = b; return *this; }
|
||||
CParser& NoSkipSpaces() { skipspaces = false; return *this; }
|
||||
CParser& UnicodeEscape(bool b = true) { uescape = b; return *this; }
|
||||
CParser& SkipComments(bool b = true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue