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; }