[llvm-commits] [llvm] r48372 - /llvm/trunk/include/llvm/System/DynamicLibrary.h

Chris Lattner sabre at nondot.org
Fri Mar 14 14:17:54 PDT 2008


Author: lattner
Date: Fri Mar 14 16:17:54 2008
New Revision: 48372

URL: http://llvm.org/viewvc/llvm-project?rev=48372&view=rev
Log:
Restore this member, which is used on win32.

Modified:
    llvm/trunk/include/llvm/System/DynamicLibrary.h

Modified: llvm/trunk/include/llvm/System/DynamicLibrary.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/DynamicLibrary.h?rev=48372&r1=48371&r2=48372&view=diff

==============================================================================
--- llvm/trunk/include/llvm/System/DynamicLibrary.h (original)
+++ llvm/trunk/include/llvm/System/DynamicLibrary.h Fri Mar 14 16:17:54 2008
@@ -30,8 +30,6 @@
   /// 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 @@
     /// @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
     /// @}





More information about the llvm-commits mailing list