diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-05 20:32:16 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-05 20:32:16 -0500 |
commit | bc708581a4f10872ec3f8bd037e791b6be5a550d (patch) | |
tree | dee15997a28b6d7225355ab6c2fba7a1eb46d95d | |
parent | 645c5a1e07b8ca32f3ab7d25865bfff0e4332d41 (diff) | |
download | horizon-bc708581a4f10872ec3f8bd037e791b6be5a550d.tar.gz horizon-bc708581a4f10872ec3f8bd037e791b6be5a550d.tar.bz2 horizon-bc708581a4f10872ec3f8bd037e791b6be5a550d.tar.xz horizon-bc708581a4f10872ec3f8bd037e791b6be5a550d.zip |
Remove error list from Script, unneeded
-rw-r--r-- | hscript/script.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hscript/script.hh b/hscript/script.hh index 98f79af..881c9d6 100644 --- a/hscript/script.hh +++ b/hscript/script.hh @@ -29,9 +29,6 @@ public: /*! Determines if the HorizonScript is valid. */ bool isValid(); - /*! Returns a list of errors found while parsing and validating the script. */ - std::vector<std::string> scriptErrors(); - private: struct ScriptPrivate; /*! Internal data. */ |