mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 06:30:39 +00:00
Provide an empty virtual destructor to go with the virtual methods in
this class. Clang was warning on this with -Wnon-virtual-dtor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
493cba1b32
commit
d36d42d4ac
@ -33,6 +33,7 @@ class RTDyldMemoryManager {
|
||||
void operator=(const RTDyldMemoryManager&); // DO NOT IMPLEMENT
|
||||
public:
|
||||
RTDyldMemoryManager() {}
|
||||
virtual ~RTDyldMemoryManager() {}
|
||||
|
||||
// Allocate ActualSize bytes, or more, for the named function. Return
|
||||
// a pointer to the allocated memory and update Size to reflect how much
|
||||
|
Loading…
Reference in New Issue
Block a user