diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-14 21:17:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-14 21:17:54 +0000 |
commit | 9453295a291b55090fd32dd13f34e923bcd0af67 (patch) | |
tree | ca0bfbb220aa2577f154104a2554041f42744d19 /include/llvm | |
parent | c17ba8a28d2f83dd320745c0c9994464845ac990 (diff) | |
download | external_llvm-9453295a291b55090fd32dd13f34e923bcd0af67.zip external_llvm-9453295a291b55090fd32dd13f34e923bcd0af67.tar.gz external_llvm-9453295a291b55090fd32dd13f34e923bcd0af67.tar.bz2 |
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
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/System/DynamicLibrary.h | 3 |
1 files changed, 1 insertions, 2 deletions
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 /// @} |