Skip to content

Commit ca5c23c

Browse files
committed
Change headers as well
1 parent 6018bc8 commit ca5c23c

File tree

256 files changed

+758
-747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+758
-747
lines changed

libc/src/__support/CPP/algorithm.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// they prove useful.
1010
//===----------------------------------------------------------------------===//
1111

12-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_ALGORITHM_H
13-
#define LLVM_LIBC_SRC_SUPPORT_CPP_ALGORITHM_H
12+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_ALGORITHM_H
13+
#define LLVM_LIBC_SRC___SUPPORT_CPP_ALGORITHM_H
1414

1515
#include "src/__support/macros/attributes.h" // LIBC_INLINE
1616

@@ -28,4 +28,4 @@ template <class T> LIBC_INLINE constexpr const T &min(const T &a, const T &b) {
2828
} // namespace cpp
2929
} // namespace __llvm_libc
3030

31-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_ALGORITHM_H
31+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_ALGORITHM_H

libc/src/__support/CPP/array.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_ARRAY_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_ARRAY_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_ARRAY_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_ARRAY_H
1111

1212
#include "src/__support/macros/attributes.h"
1313
#include <stddef.h> // For size_t.
@@ -52,4 +52,4 @@ template <class T, size_t N> struct array {
5252
} // namespace cpp
5353
} // namespace __llvm_libc
5454

55-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_ARRAY_H
55+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_ARRAY_H

libc/src/__support/CPP/atomic.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_ATOMIC_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_ATOMIC_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_ATOMIC_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_ATOMIC_H
1111

1212
#include "src/__support/macros/attributes.h"
1313
#include "src/__support/macros/properties/architectures.h"
@@ -118,4 +118,4 @@ LIBC_INLINE void atomic_thread_fence(MemoryOrder mem_ord) {
118118
} // namespace cpp
119119
} // namespace __llvm_libc
120120

121-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_ATOMIC_H
121+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_ATOMIC_H

libc/src/__support/CPP/bit.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SUPPORT_CPP_BIT_H
10-
#define LLVM_LIBC_SUPPORT_CPP_BIT_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_BIT_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_BIT_H
1111

1212
#include "src/__support/CPP/type_traits.h"
1313
#include "src/__support/macros/attributes.h"
@@ -61,4 +61,4 @@ LIBC_INLINE constexpr To bit_or_static_cast(const From &from) {
6161

6262
} // namespace __llvm_libc::cpp
6363

64-
#endif // LLVM_LIBC_SUPPORT_CPP_BIT_H
64+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_BIT_H

libc/src/__support/CPP/bitset.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_BITSET_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_BITSET_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_BITSET_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_BITSET_H
1111

1212
#include "src/__support/macros/attributes.h"
1313
#include <stddef.h> // For size_t.
@@ -87,4 +87,4 @@ template <size_t NumberOfBits> struct bitset {
8787

8888
} // namespace __llvm_libc::cpp
8989

90-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_BITSET_H
90+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_BITSET_H

libc/src/__support/CPP/cstddef.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_BYTE_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_BYTE_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_CSTDDEF_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_CSTDDEF_H
1111

1212
#include "src/__support/macros/attributes.h"
1313
#include "type_traits.h" // For enable_if_t, is_integral_v.
@@ -68,4 +68,4 @@ to_integer(byte b) noexcept {
6868

6969
} // namespace __llvm_libc::cpp
7070

71-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_BYTE_H
71+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_CSTDDEF_H

libc/src/__support/CPP/expected.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SUPPORT_CPP_EXPECTED_H
10-
#define LLVM_LIBC_SUPPORT_CPP_EXPECTED_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_EXPECTED_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_EXPECTED_H
1111

1212
namespace __llvm_libc::cpp {
1313

@@ -48,4 +48,4 @@ template <class T, class E> class expected {
4848

4949
} // namespace __llvm_libc::cpp
5050

51-
#endif // LLVM_LIBC_SUPPORT_CPP_EXPECTED_H
51+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_EXPECTED_H

libc/src/__support/CPP/functional.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_FUNCTIONAL_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_FUNCTIONAL_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_FUNCTIONAL_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_FUNCTIONAL_H
1111

1212
#include "src/__support/CPP/type_traits/enable_if.h"
1313
#include "src/__support/CPP/type_traits/is_convertible.h"
@@ -67,4 +67,4 @@ template <typename Ret, typename... Params> class function<Ret(Params...)> {
6767
} // namespace cpp
6868
} // namespace __llvm_libc
6969

70-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_FUNCTIONAL_H
70+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_FUNCTIONAL_H

libc/src/__support/CPP/limits.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_LIMITS_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_LIMITS_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
1111

1212
#include <limits.h>
1313

@@ -98,4 +98,4 @@ template <> class numeric_limits<__uint128_t> {
9898
} // namespace cpp
9999
} // namespace __llvm_libc
100100

101-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_LIMITS_H
101+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H

libc/src/__support/CPP/new.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_NEW_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_NEW_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_NEW_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_NEW_H
1111

1212
#include "src/__support/common.h"
1313

@@ -99,4 +99,4 @@ void operator delete[](void *, size_t) noexcept
9999
void operator delete[](void *, size_t, std::align_val_t) noexcept
100100
__asm__("__llvm_libc_delete_array_sized_aligned");
101101

102-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_NEW_H
102+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_NEW_H

libc/src/__support/CPP/optional.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_OPTIONAL_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_OPTIONAL_H
1111

1212
#include "src/__support/CPP/type_traits.h"
1313
#include "src/__support/CPP/utility.h"
@@ -120,4 +120,4 @@ template <typename T> class optional {
120120
} // namespace cpp
121121
} // namespace __llvm_libc
122122

123-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H
123+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_OPTIONAL_H

libc/src/__support/CPP/span.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_SPAN_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_SPAN_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_SPAN_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_SPAN_H
1010

1111
#include <stddef.h> // For size_t
1212

@@ -121,4 +121,4 @@ template <typename T> class span {
121121

122122
} // namespace __llvm_libc::cpp
123123

124-
#endif /* LLVM_LIBC_SRC_SUPPORT_CPP_SPAN_H */
124+
#endif /* LLVM_LIBC_SRC___SUPPORT_CPP_SPAN_H */

libc/src/__support/CPP/string.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_STRING_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_STRING_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_STRING_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_STRING_H
1111

1212
#include "src/__support/CPP/string_view.h"
1313
#include "src/__support/integer_to_string.h" // IntegerToString
@@ -227,4 +227,4 @@ LIBC_INLINE string to_string(unsigned long long value) {
227227
} // namespace cpp
228228
} // namespace __llvm_libc
229229

230-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_STRING_H
230+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_STRING_H

libc/src/__support/CPP/string_view.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_STRINGVIEW_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_STRINGVIEW_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_STRING_VIEW_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_STRING_VIEW_H
1111

1212
#include "src/__support/common.h"
1313

@@ -199,4 +199,4 @@ class string_view {
199199
} // namespace cpp
200200
} // namespace __llvm_libc
201201

202-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_STRINGVIEW_H
202+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_STRING_VIEW_H

libc/src/__support/CPP/stringstream.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_STRINGSTREAM_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_STRINGSTREAM_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_STRINGSTREAM_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_STRINGSTREAM_H
1111

1212
#include "span.h"
1313
#include "string_view.h"
@@ -92,4 +92,4 @@ class StringStream {
9292
} // namespace cpp
9393
} // namespace __llvm_libc
9494

95-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_STRINGSTREAM_H
95+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_STRINGSTREAM_H

libc/src/__support/CPP/type_traits.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_H
1111

1212
#include "src/__support/CPP/type_traits/add_lvalue_reference.h"
1313
#include "src/__support/CPP/type_traits/add_pointer.h"
@@ -58,4 +58,4 @@
5858
#include "src/__support/CPP/type_traits/type_identity.h"
5959
#include "src/__support/CPP/type_traits/void_t.h"
6060

61-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_H
61+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_H

libc/src/__support/CPP/type_traits/add_lvalue_reference.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
1212

@@ -27,4 +27,4 @@ using add_lvalue_reference_t = typename add_lvalue_reference<T>::type;
2727

2828
} // namespace __llvm_libc::cpp
2929

30-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
30+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H

libc/src/__support/CPP/type_traits/add_pointer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H
1010

1111
#include "src/__support/CPP/type_traits/remove_reference.h"
1212
#include "src/__support/CPP/type_traits/type_identity.h"
@@ -25,4 +25,4 @@ struct add_pointer : decltype(detail::try_add_pointer<T>(0)) {};
2525
template <class T> using add_pointer_t = typename add_pointer<T>::type;
2626
} // namespace __llvm_libc::cpp
2727

28-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H
28+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_POINTER_H

libc/src/__support/CPP/type_traits/add_rvalue_reference.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
1212

@@ -26,4 +26,4 @@ using add_rvalue_reference_t = typename add_rvalue_reference<T>::type;
2626

2727
} // namespace __llvm_libc::cpp
2828

29-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
29+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H

libc/src/__support/CPP/type_traits/always_false.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
10-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
9+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
10+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
1111

1212
#include "src/__support/macros/attributes.h"
1313

@@ -26,4 +26,4 @@ template <typename...> LIBC_INLINE_VAR constexpr bool always_false = false;
2626

2727
} // namespace __llvm_libc::cpp
2828

29-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
29+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H

libc/src/__support/CPP/type_traits/bool_constant.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
1010

1111
#include "src/__support/CPP/type_traits/integral_constant.h"
1212

@@ -17,4 +17,4 @@ template <bool V> using bool_constant = cpp::integral_constant<bool, V>;
1717

1818
} // namespace __llvm_libc::cpp
1919

20-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
20+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H

libc/src/__support/CPP/type_traits/conditional.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
1212

@@ -22,4 +22,4 @@ using conditional_t = typename conditional<B, T, F>::type;
2222

2323
} // namespace __llvm_libc::cpp
2424

25-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
25+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H

libc/src/__support/CPP/type_traits/decay.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_DECAY_H
9-
#define LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_DECAY_H
8+
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_DECAY_H
9+
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_DECAY_H
1010

1111
#include "src/__support/macros/attributes.h"
1212
#include "src/__support/macros/config.h"
@@ -35,4 +35,4 @@ template <class T> using decay_t = typename decay<T>::type;
3535

3636
} // namespace __llvm_libc::cpp
3737

38-
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_TYPE_TRAITS_DECAY_H
38+
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_DECAY_H

0 commit comments

Comments
 (0)