mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Make the destructor virtual to silence GCC's -Wnon-virtual-dtor. Let me
know if there is some problem with this destructor being virtual... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134867 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -27,7 +27,7 @@ namespace llvm {
|
|||||||
class ValueMapTypeRemapper {
|
class ValueMapTypeRemapper {
|
||||||
virtual void Anchor(); // Out of line method.
|
virtual void Anchor(); // Out of line method.
|
||||||
public:
|
public:
|
||||||
~ValueMapTypeRemapper() {}
|
virtual ~ValueMapTypeRemapper() {}
|
||||||
|
|
||||||
/// remapType - The client should implement this method if they want to
|
/// remapType - The client should implement this method if they want to
|
||||||
/// remap types while mapping values.
|
/// remap types while mapping values.
|
||||||
|
Reference in New Issue
Block a user