From 53c5e7b2e7e36d70bd943cb2d576121435bd5b3f Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 5 Apr 2011 23:54:31 +0000 Subject: Make the virtual destructor out-of-line so we have a key function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128964 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ExecutionEngine/RuntimeDyld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm/ExecutionEngine') diff --git a/include/llvm/ExecutionEngine/RuntimeDyld.h b/include/llvm/ExecutionEngine/RuntimeDyld.h index 5d6d452..6e18c7c 100644 --- a/include/llvm/ExecutionEngine/RuntimeDyld.h +++ b/include/llvm/ExecutionEngine/RuntimeDyld.h @@ -33,7 +33,7 @@ class RTDyldMemoryManager { void operator=(const RTDyldMemoryManager&); // DO NOT IMPLEMENT public: RTDyldMemoryManager() {} - virtual ~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 -- cgit v1.1