Skip to content

Commit 19c7023

Browse files
committed
[libc] formatting
1 parent fcb81a3 commit 19c7023

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libc/test/src/__support/threads/darwin/mutex_test.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "src/__support/threads/mutex.h"
10-
#include "src/__support/threads/raw_mutex.h"
1110
#include "src/__support/threads/mutex_common.h"
11+
#include "src/__support/threads/raw_mutex.h"
1212
#include "test/UnitTest/Test.h"
1313

1414
TEST(LlvmLibcSupportThreadsMutexTest, SmokeTest) {
15-
LIBC_NAMESPACE::Mutex mutex(0,0,0,0);;
15+
LIBC_NAMESPACE::Mutex mutex(0, 0, 0, 0);
16+
;
1617
ASSERT_EQ(mutex.lock(), LIBC_NAMESPACE::MutexError::NONE);
1718
ASSERT_EQ(mutex.unlock(), LIBC_NAMESPACE::MutexError::NONE);
1819
ASSERT_EQ(mutex.try_lock(), LIBC_NAMESPACE::MutexError::NONE);

0 commit comments

Comments
 (0)