diff options
Diffstat (limited to 'lib/System/Mutex.cpp')
-rw-r--r-- | lib/System/Mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Mutex.cpp b/lib/System/Mutex.cpp index 644e1d0705..25c83e848d 100644 --- a/lib/System/Mutex.cpp +++ b/lib/System/Mutex.cpp @@ -38,7 +38,7 @@ using namespace sys; // Note: all LLVM tools will link against -lpthread if its available since it // is configured into the LIBS variable. // Note: this line of code generates a warning if pthread_mutex_init is not -// declared with weak linkage. Its safe to ignore the warning. +// declared with weak linkage. It's safe to ignore the warning. static const bool pthread_enabled = static_cast<bool>(pthread_mutex_init); // Construct a Mutex using pthread calls |