summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-07 19:46:19 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-07 19:46:19 -0600
commit796b8390e9f37019636cfc236420dda122ea1a91 (patch)
tree57f5007f42c816057be2f7cbd1bb4021f45a6f66
parent094e1bab65bf220b64f37dc6431cc208ee52e54f (diff)
downloadhorizon-796b8390e9f37019636cfc236420dda122ea1a91.tar.gz
horizon-796b8390e9f37019636cfc236420dda122ea1a91.tar.bz2
horizon-796b8390e9f37019636cfc236420dda122ea1a91.tar.xz
horizon-796b8390e9f37019636cfc236420dda122ea1a91.zip
hscript: nevermind, that causes obj sizes to bloat
-rw-r--r--hscript/key.cc4
-rw-r--r--hscript/key.hh2
2 files changed, 5 insertions, 1 deletions
diff --git a/hscript/key.cc b/hscript/key.cc
index ed21c02..6364886 100644
--- a/hscript/key.cc
+++ b/hscript/key.cc
@@ -14,6 +14,10 @@
#include "key.hh"
#include "util/output.hh"
+
+Horizon::Keys::Key::~Key() {
+}
+
bool Horizon::Keys::BooleanKey::parse(const std::string &what,
const std::string &where,
const std::string &key, bool *out) {
diff --git a/hscript/key.hh b/hscript/key.hh
index aab23cf..0a53124 100644
--- a/hscript/key.hh
+++ b/hscript/key.hh
@@ -29,7 +29,7 @@ protected:
long line;
Key(long _line) : line(_line) {}
public:
- virtual ~Key() {}
+ virtual ~Key();
/*! Create the Key object with the specified data as the entire value.
* @param data The value associated with the key.