summaryrefslogtreecommitdiff
path: root/hscript/meta.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/meta.hh')
-rw-r--r--hscript/meta.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/hscript/meta.hh b/hscript/meta.hh
index b73cda4..035bb8a 100644
--- a/hscript/meta.hh
+++ b/hscript/meta.hh
@@ -40,9 +40,8 @@ public:
static Key *parseFromData(const std::string &data, int lineno, int *errors,
int *warnings);
const std::set<std::string> packages() const { return _pkgs; }
- bool validate(ScriptOptions) const override { return true; }
- bool execute(ScriptOptions) const override { return true; }
-
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
class Language : public StringKey {