Fixed CParser::SkipSpaces (thanks cbpporter)

git-svn-id: svn://ultimatepp.org/upp/trunk@7661 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-09-11 15:42:36 +00:00
parent 505c1377c7
commit f01bd2cb7d

View file

@ -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);