diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-14 20:41:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-14 20:41:50 +0000 |
commit | 7e526e754481d66a9849e49fb2be19772db91529 (patch) | |
tree | 89b0072bd21fd4317918e80102bfb250c9e000d9 /lib/System/Win32/DynamicLibrary.inc | |
parent | b973d5f9b59f75854493bc37a9eb0f3032be0864 (diff) |
this was removed from the Unix side.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/DynamicLibrary.inc')
-rw-r--r-- | lib/System/Win32/DynamicLibrary.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/System/Win32/DynamicLibrary.inc b/lib/System/Win32/DynamicLibrary.inc index 5b4d5a5244..3cc6a06bb6 100644 --- a/lib/System/Win32/DynamicLibrary.inc +++ b/lib/System/Win32/DynamicLibrary.inc @@ -176,10 +176,5 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) { return 0; } -void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) { - assert(handle != 0 && "Invalid DynamicLibrary handle"); - return (void *) GetProcAddress((HMODULE)handle, symbolName); -} - } |