aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-07-13 02:15:18 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-07-13 02:15:18 +0000
commit6d2352249af8853c8307a7cf679017b32d27958c (patch)
treee3fcf758ddf54cbe8d1106dac4fefc811a57d006 /include/llvm/System
parentc087a435109cdc943da094a21371f7d66d5b0e54 (diff)
downloadexternal_llvm-6d2352249af8853c8307a7cf679017b32d27958c.zip
external_llvm-6d2352249af8853c8307a7cf679017b32d27958c.tar.gz
external_llvm-6d2352249af8853c8307a7cf679017b32d27958c.tar.bz2
Win32 support for Mutex class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/Mutex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/System/Mutex.h b/include/llvm/System/Mutex.h
index 16e898c..8b5078d 100644
--- a/include/llvm/System/Mutex.h
+++ b/include/llvm/System/Mutex.h
@@ -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 &);
/// @}
};
}