forked from OSchip/llvm-project
Make the destructor virtual to silence GCC's -Wnon-virtual-dtor. Let me
know if there is some problem with this destructor being virtual... llvm-svn: 134867
This commit is contained in:
parent
18ca0475d7
commit
203976e39f
|
@ -27,7 +27,7 @@ namespace llvm {
|
|||
class ValueMapTypeRemapper {
|
||||
virtual void Anchor(); // Out of line method.
|
||||
public:
|
||||
~ValueMapTypeRemapper() {}
|
||||
virtual ~ValueMapTypeRemapper() {}
|
||||
|
||||
/// remapType - The client should implement this method if they want to
|
||||
/// remap types while mapping values.
|
||||
|
|
Loading…
Reference in New Issue