There is no need to use a pure virtual destructor, and doing so crashes libcwd when configured with --enable-alloc.

This commit is contained in:
Aleric Inglewood
2012-06-22 06:21:21 +02:00
parent 782091ff02
commit 221e3908b9

View File

@@ -39,7 +39,7 @@ class LLSD;
class LLOptionInterface
{
public:
virtual ~LLOptionInterface() = 0;
virtual ~LLOptionInterface();
virtual LLSD getOption(const std::string& name) const = 0;
};