From e070bbed27f528224bfdcf90eee5ebb223ef4737 Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 25 Nov 2009 20:57:39 +0000 Subject: [PATCH] Core: CParser::ThrowError() (without parameter) git-svn-id: svn://ultimatepp.org/upp/trunk@1723 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Parser.h | 1 + 1 file changed, 1 insertion(+) diff --git a/uppsrc/Core/Parser.h b/uppsrc/Core/Parser.h index c4341e0d4..674712748 100644 --- a/uppsrc/Core/Parser.h +++ b/uppsrc/Core/Parser.h @@ -21,6 +21,7 @@ public: struct Error : public Exc { Error(const char *s) : Exc(s) {} }; void ThrowError(const char *s); + void ThrowError() { ThrowError(""); } void NoSkipSpaces() { skipspaces = false; } void SkipSpaces() { skipspaces = true; }