1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Restore this member, which is used on win32.

llvm-svn: 48372
This commit is contained in:
Chris Lattner 2008-03-14 21:17:54 +00:00
parent 3612a7ed30
commit b549d83ca6

View 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
/// @}