Restore this member, which is used on win32.
authorChris Lattner <sabre@nondot.org>
Fri, 14 Mar 2008 21:17:54 +0000 (21:17 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 14 Mar 2008 21:17:54 +0000 (21:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48372 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/DynamicLibrary.h

index 5da0ea2f4845e47eded88cd5bb31e5fdf45d9434..e1c6a40f1cd446d012a7a45c744e03c544667065 100644 (file)
@@ -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
     /// @}