1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Quiesce warning about non-virtual d'tor in virtual class.

llvm-svn: 112991
This commit is contained in:
Bill Wendling 2010-09-03 18:41:20 +00:00
parent c50df6cfad
commit 6e035f9f03

View File

@ -118,7 +118,7 @@ namespace llvm {
virtual void logd(const DiffLogBuilder &Log) = 0;
protected:
~Consumer() {}
virtual ~Consumer() {}
};
/// A RAII object for recording the current context.
@ -141,7 +141,7 @@ namespace llvm {
virtual bool operator()(Value *L, Value *R) = 0;
protected:
~Oracle() {}
virtual ~Oracle() {}
};
DifferenceEngine(LLVMContext &context, Consumer &consumer)