Run clang-format
[junction.git] / junction / striped / Mutex.h
index c88b1ab6eacb73b4b5abdd416278c98e0174a416..9921846bbd069a7b9fe4d0adfb851069ceff8cd1 100644 (file)
@@ -48,7 +48,7 @@ public:
     bool tryLock() {
         return (m_status.compareExchange(-1, 0, turf::Acquire) < 0);
     }
-    
+
     void unlock() {
         if (m_status.exchange(-1, turf::Release) > 0)
             m_event.signal();