Win32 support for Mutex class.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22420 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeff Cohen
2005-07-13 02:15:18 +00:00
parent c087a43510
commit 6d2352249a
5 changed files with 40 additions and 15 deletions

View File

@@ -66,14 +66,14 @@ namespace llvm
/// @name Platform Dependent Data
/// @{
private:
void* data_; ///< We don't know what the data will be
void* data_; ///< We don't know what the data will be
/// @}
/// @name Do Not Implement
/// @{
private:
Mutex(const Mutex & original);
void operator=(const Mutex &);
Mutex(const Mutex & original);
void operator=(const Mutex &);
/// @}
};
}