1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Provide an empty virtual destructor to go with the virtual methods in

this class. Clang was warning on this with -Wnon-virtual-dtor.

llvm-svn: 128952
This commit is contained in:
Chandler Carruth 2011-04-05 23:03:24 +00:00
parent c8ceb7246f
commit 715cc35206

View File

@ -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