From 221e3908b9b5a673b73dd624e98e03d988b417a5 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Fri, 22 Jun 2012 06:21:21 +0200 Subject: [PATCH] There is no need to use a pure virtual destructor, and doing so crashes libcwd when configured with --enable-alloc. --- indra/llcommon/lloptioninterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/lloptioninterface.h b/indra/llcommon/lloptioninterface.h index 4faf95f5e..dd5829d79 100644 --- a/indra/llcommon/lloptioninterface.h +++ b/indra/llcommon/lloptioninterface.h @@ -39,7 +39,7 @@ class LLSD; class LLOptionInterface { public: - virtual ~LLOptionInterface() = 0; + virtual ~LLOptionInterface(); virtual LLSD getOption(const std::string& name) const = 0; };