Skip to content

Commit 61e0181

Browse files
Fix formatting
1 parent ac36e4a commit 61e0181

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

libc/src/string/memory_utils/aarch64/inline_strlen.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ namespace neon {
4242
(cpp::countr_zero(cmp) >> 3));
4343
}
4444
}
45-
} // namespace neon
45+
} // namespace neon
4646

4747
namespace string_length_impl = neon;
4848

49-
} // namespace LIBC_NAMESPACE_DECL
49+
} // namespace LIBC_NAMESPACE_DECL
5050
#endif // __ARM_NEON
5151
#endif // LLVM_LIBC_SRC_STRING_MEMORY_UTILS_AARCH64_INLINE_STRLEN_H

libc/src/string/memory_utils/x86_64/inline_strlen.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#ifndef LLVM_LIBC_SRC_STRING_MEMORY_UTILS_X86_64_INLINE_STRLEN_H
99
#define LLVM_LIBC_SRC_STRING_MEMORY_UTILS_X86_64_INLINE_STRLEN_H
1010

11-
#include "src/__support/CPP/bit.h" // countr_zero
11+
#include "src/__support/CPP/bit.h" // countr_zero
1212

1313
#include <immintrin.h>
1414
#include <stddef.h> // size_t
@@ -41,7 +41,7 @@ namespace sse2 {
4141
cpp::countr_zero(cmp));
4242
}
4343
}
44-
} // namespace sse2
44+
} // namespace sse2
4545

4646
#if defined(__AVX2__)
4747
namespace avx2 {
@@ -70,7 +70,7 @@ namespace avx2 {
7070
cpp::countr_zero(cmp));
7171
}
7272
}
73-
}
73+
} // namespace avx2
7474
#endif
7575

7676
#if defined(__AVX512F__)

0 commit comments

Comments
 (0)