Skip to content

Commit 77d29e2

Browse files
committed
format code with clang-format
1 parent aafcf1d commit 77d29e2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

libc/src/time/localtime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "src/time/localtime.h"
10-
#include "src/time/time_utils.h"
1110
#include "src/__support/macros/null_check.h"
11+
#include "src/time/time_utils.h"
1212

1313
namespace LIBC_NAMESPACE_DECL {
1414

libc/src/time/localtime_r.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "src/time/localtime_r.h"
10-
#include "src/time/time_utils.h"
1110
#include "src/__support/macros/null_check.h"
11+
#include "src/time/time_utils.h"
1212

1313
namespace LIBC_NAMESPACE_DECL {
1414

libc/test/src/time/localtime_r_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ TEST(LlvmLibcLocaltimeR, ValidUnixTimestamp0) {
2626
ASSERT_EQ(0, result->tm_isdst);
2727
}
2828

29-
// TODO(zimirza): These tests does not expect the correct output of localtime as per
30-
// specification. This is due to timezone functions removed from
29+
// TODO(zimirza): These tests does not expect the correct output of localtime as
30+
// per specification. This is due to timezone functions removed from
3131
// https://github.com/llvm/llvm-project/pull/110363.
3232
// This will be resolved a new pull request.
3333

libc/test/src/time/localtime_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ TEST(LlvmLibcLocaltime, ValidUnixTimestamp0) {
2424
ASSERT_EQ(0, result->tm_isdst);
2525
}
2626

27-
// TODO(zimirza): These tests does not expect the correct output of localtime as per
28-
// specification. This is due to timezone functions removed from
27+
// TODO(zimirza): These tests does not expect the correct output of localtime as
28+
// per specification. This is due to timezone functions removed from
2929
// https://github.com/llvm/llvm-project/pull/110363.
3030
// This will be resolved a new pull request.
3131

0 commit comments

Comments
 (0)