Quiet compiler warning. The only reason the function is marked virtual

is so that it can be called from inside a debugger.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33067 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2007-01-11 02:38:21 +00:00
parent 419c6f5ac8
commit bc00fec835

View File

@ -247,6 +247,7 @@ namespace {
private:
#ifndef NDEBUG
public:
virtual ~Node() {}
virtual void dump() const {
dump(*cerr.stream());
}
@ -638,6 +639,7 @@ namespace {
}
#ifndef NDEBUG
virtual ~InequalityGraph() {}
virtual void dump() {
dump(*cerr.stream());
}