diff options
Diffstat (limited to 'include/llvm/System')
-rw-r--r-- | include/llvm/System/Mutex.h | 6 |
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 &); /// @} }; } |