From 04d43cd71f081f1b8d2f0fd803a47cb6342e4fcd Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Thu, 15 Jun 2017 15:21:20 -0700 Subject: Remove more "core" code that isn't used. It is always easier to add back code when you need it, than it is to maintain code you aren't using. --- source/core/exception.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/core/exception.h') diff --git a/source/core/exception.h b/source/core/exception.h index 4671ae10b..6739c6778 100644 --- a/source/core/exception.h +++ b/source/core/exception.h @@ -6,7 +6,7 @@ namespace Slang { - class Exception : public Object + class Exception { public: String Message; @@ -16,6 +16,9 @@ namespace Slang : Message(message) { } + + virtual ~Exception() + {} }; class IndexOutofRangeException : public Exception -- cgit v1.2.3