[llvm-commits] CVS: llvm/include/llvm/System/Mutex.h

Jeff Cohen jeffc at jolt-lang.org
Tue Jul 12 19:15:30 PDT 2005



Changes in directory llvm/include/llvm/System:

Mutex.h updated: 1.1 -> 1.2
---
Log message:

Win32 support for Mutex class.

---
Diffs of the changes:  (+3 -3)

 Mutex.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/System/Mutex.h
diff -u llvm/include/llvm/System/Mutex.h:1.1 llvm/include/llvm/System/Mutex.h:1.2
--- llvm/include/llvm/System/Mutex.h:1.1	Tue Jul 12 10:37:43 2005
+++ llvm/include/llvm/System/Mutex.h	Tue Jul 12 21:15:17 2005
@@ -66,14 +66,14 @@
     /// @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 &);
     /// @}
     };
   }






More information about the llvm-commits mailing list