File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ class string_view {
31
31
32
32
LIBC_INLINE static int compareMemory (const char *Lhs, const char *Rhs,
33
33
size_t Length) {
34
- for (size_t I = 0 ; I < Length; ++I )
35
- if (int Diff = (int )Lhs[I ] - (int )Rhs[I ])
34
+ for (size_t i = 0 ; i < Length; ++i )
35
+ if (int Diff = (int )Lhs[i ] - (int )Rhs[i ])
36
36
return Diff;
37
37
return 0 ;
38
38
}
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ template <class T> struct in_place_type_t {
27
27
};
28
28
template <class T > LIBC_INLINE_VAR constexpr in_place_type_t <T> in_place_type{};
29
29
30
- template <size_t I > struct in_place_index_t {
30
+ template <size_t IDX > struct in_place_index_t {
31
31
LIBC_INLINE explicit in_place_index_t () = default;
32
32
};
33
- template <size_t I >
34
- LIBC_INLINE_VAR constexpr in_place_index_t <I > in_place_index{};
33
+ template <size_t IDX >
34
+ LIBC_INLINE_VAR constexpr in_place_index_t <IDX > in_place_index{};
35
35
36
36
} // namespace cpp
37
37
} // namespace LIBC_NAMESPACE_DECL
You can’t perform that action at this time.
0 commit comments