From f0d9e0582338292a36adf7e2a2f6be4293b4a0b8 Mon Sep 17 00:00:00 2001 From: Sebastien Mamessier Date: Mon, 11 Apr 2016 11:28:22 -0400 Subject: [PATCH] Made RTI::Exception destructor purely virtual to force typeinfo transfer to libfedtime --- include/hla-1_3/baseTypes.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hla-1_3/baseTypes.hh b/include/hla-1_3/baseTypes.hh index 57bb616..4c46485 100644 --- a/include/hla-1_3/baseTypes.hh +++ b/include/hla-1_3/baseTypes.hh @@ -26,7 +26,7 @@ public: Exception(const char *reason); Exception(ULong serial, const char *reason); Exception(const Exception &toCopy); - virtual ~Exception(); + virtual ~Exception() = 0; Exception &operator=(const Exception &); virtual Exception *cloneSelf() const throw() = 0 ; virtual void throwSelf() const = 0 ; -- 2.7.4