From 9453295a291b55090fd32dd13f34e923bcd0af67 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 14 Mar 2008 21:17:54 +0000 Subject: Restore this member, which is used on win32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48372 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/System/DynamicLibrary.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include') diff --git a/include/llvm/System/DynamicLibrary.h b/include/llvm/System/DynamicLibrary.h index 5da0ea2..e1c6a40 100644 --- a/include/llvm/System/DynamicLibrary.h +++ b/include/llvm/System/DynamicLibrary.h @@ -30,8 +30,6 @@ namespace sys { /// It also allows for symbols to be defined which don't live in any library, /// but rather the main program itself, useful on Windows where the main /// executable cannot be searched. - /// @since 1.4 - /// @brief Portable dynamic library abstraction. class DynamicLibrary { /// @name Constructors /// @{ @@ -89,6 +87,7 @@ namespace sys { /// @name Implementation /// @{ protected: + void* handle; // Opaque handle for information about the library DynamicLibrary(const DynamicLibrary&); ///< Do not implement DynamicLibrary& operator=(const DynamicLibrary&); ///< Do not implement /// @} -- cgit v1.1