Skip to content

Commit 3f45ab5

Browse files
committed
Add src/__support/macros/config.h includes
1 parent fdb98d9 commit 3f45ab5

File tree

2,286 files changed

+2660
-4
lines changed

Some content is hidden

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

2,286 files changed

+2660
-4
lines changed

libc/benchmarks/LibcDefaultImplementations.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "LibcFunctionPrototypes.h"
2+
#include "src/__support/macros/config.h"
23
#include "llvm/ADT/ArrayRef.h"
34
#include <cstddef>
45

libc/benchmarks/LibcMemoryBenchmarkMain.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "LibcBenchmark.h"
1111
#include "LibcMemoryBenchmark.h"
1212
#include "MemorySizeDistributions.h"
13+
#include "src/__support/macros/config.h"
1314
#include "llvm/Support/CommandLine.h"
1415
#include "llvm/Support/ErrorHandling.h"
1516
#include "llvm/Support/FileSystem.h"

libc/benchmarks/automemcpy/lib/CodeGen.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
// function at the end of the file.
3737

3838
#include "automemcpy/CodeGen.h"
39+
#include "src/__support/macros/config.h"
3940
#include <cassert>
4041
#include <llvm/ADT/STLExtras.h>
4142
#include <llvm/ADT/StringSet.h>

libc/benchmarks/automemcpy/unittests/CodeGenTest.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "automemcpy/CodeGen.h"
1010
#include "automemcpy/RandomFunctionGenerator.h"
11+
#include "src/__support/macros/config.h"
1112
#include "gmock/gmock.h"
1213
#include "gtest/gtest.h"
1314
#include <optional>

libc/benchmarks/gpu/BenchmarkLogger.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "src/__support/CPP/string_view.h"
44
#include "src/__support/OSUtil/io.h" // write_to_stderr
55
#include "src/__support/big_int.h" // is_big_int
6+
#include "src/__support/macros/config.h"
67
#include "src/__support/macros/properties/types.h" // LIBC_TYPES_HAS_INT128
78
#include "src/__support/uint128.h"
89

libc/benchmarks/gpu/BenchmarkLogger.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#ifndef LLVM_LIBC_BENCHMARKS_GPU_BENCHMARKLOGGER_H
1010
#define LLVM_LIBC_BENCHMARKS_GPU_BENCHMARKLOGGER_H
1111

12+
#include "src/__support/macros/config.h"
13+
1214
namespace LIBC_NAMESPACE_DECL {
1315
namespace benchmarks {
1416

libc/benchmarks/gpu/LibcGpuBenchmark.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "src/__support/FPUtil/sqrt.h"
66
#include "src/__support/GPU/utils.h"
77
#include "src/__support/fixedvector.h"
8+
#include "src/__support/macros/config.h"
89
#include "src/time/gpu/time_utils.h"
910

1011
namespace LIBC_NAMESPACE_DECL {

libc/benchmarks/gpu/LibcGpuBenchmark.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "src/__support/CPP/functional.h"
77
#include "src/__support/CPP/limits.h"
88
#include "src/__support/CPP/string_view.h"
9+
#include "src/__support/macros/config.h"
910
#include "src/time/clock.h"
1011

1112
#include <stdint.h>

libc/config/linux/app.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef LLVM_LIBC_CONFIG_LINUX_APP_H
1010
#define LLVM_LIBC_CONFIG_LINUX_APP_H
1111

12+
#include "src/__support/macros/config.h"
1213
#include "src/__support/macros/properties/architectures.h"
1314

1415
#include <stdint.h>

libc/fuzzing/__support/hashtable_fuzz.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "include/llvm-libc-types/ENTRY.h"
1313
#include "src/__support/CPP/string_view.h"
1414
#include "src/__support/HashTable/table.h"
15+
#include "src/__support/macros/config.h"
1516

1617
namespace LIBC_NAMESPACE_DECL {
1718

libc/src/__support/CPP/algorithm.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#define LLVM_LIBC_SRC___SUPPORT_CPP_ALGORITHM_H
1414

1515
#include "src/__support/macros/attributes.h" // LIBC_INLINE
16+
#include "src/__support/macros/config.h"
1617

1718
namespace LIBC_NAMESPACE_DECL {
1819
namespace cpp {

libc/src/__support/CPP/array.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#include "src/__support/CPP/iterator.h" // reverse_iterator
1313
#include "src/__support/macros/attributes.h"
14+
#include "src/__support/macros/config.h"
1415
#include <stddef.h> // For size_t.
1516

1617
namespace LIBC_NAMESPACE_DECL {

libc/src/__support/CPP/atomic.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_ATOMIC_H
1111

1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314
#include "src/__support/macros/properties/architectures.h"
1415

1516
#include "type_traits.h"

libc/src/__support/CPP/bit.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "src/__support/CPP/limits.h" // numeric_limits
1515
#include "src/__support/CPP/type_traits.h"
1616
#include "src/__support/macros/attributes.h"
17+
#include "src/__support/macros/config.h"
1718
#include "src/__support/macros/sanitizer.h"
1819

1920
#include <stdint.h>

libc/src/__support/CPP/bitset.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_BITSET_H
1111

1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314
#include <stddef.h> // For size_t.
1415

1516
namespace LIBC_NAMESPACE_DECL {

libc/src/__support/CPP/cstddef.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_CSTDDEF_H
1111

1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314
#include "type_traits.h" // For enable_if_t, is_integral_v.
1415

1516
namespace LIBC_NAMESPACE_DECL {

libc/src/__support/CPP/expected.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_EXPECTED_H
1111

1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314

1415
namespace LIBC_NAMESPACE_DECL {
1516
namespace cpp {

libc/src/__support/CPP/functional.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "src/__support/CPP/type_traits/remove_reference.h"
1818
#include "src/__support/CPP/utility/forward.h"
1919
#include "src/__support/macros/attributes.h"
20+
#include "src/__support/macros/config.h"
2021

2122
#include <stdint.h>
2223

libc/src/__support/CPP/iterator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "src/__support/CPP/type_traits/is_convertible.h"
1414
#include "src/__support/CPP/type_traits/is_same.h"
1515
#include "src/__support/macros/attributes.h"
16+
#include "src/__support/macros/config.h"
1617

1718
namespace LIBC_NAMESPACE_DECL {
1819
namespace cpp {

libc/src/__support/CPP/limits.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "src/__support/CPP/type_traits/is_integral.h"
1414
#include "src/__support/CPP/type_traits/is_signed.h"
1515
#include "src/__support/macros/attributes.h" // LIBC_INLINE
16+
#include "src/__support/macros/config.h"
1617
#include "src/__support/macros/properties/types.h" // LIBC_TYPES_HAS_INT128
1718

1819
namespace LIBC_NAMESPACE_DECL {

libc/src/__support/CPP/mutex.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_MUTEX_H
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_MUTEX_H
1111

12+
#include "src/__support/macros/config.h"
13+
1214
namespace LIBC_NAMESPACE_DECL {
1315
namespace cpp {
1416

libc/src/__support/CPP/new.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_NEW_H
1111

1212
#include "src/__support/common.h"
13+
#include "src/__support/macros/config.h"
1314

1415
#include <stddef.h> // For size_t
1516
#include <stdlib.h> // For malloc, free etc.

libc/src/__support/CPP/optional.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "src/__support/CPP/type_traits.h"
1313
#include "src/__support/CPP/utility.h"
1414
#include "src/__support/macros/attributes.h"
15+
#include "src/__support/macros/config.h"
1516

1617
namespace LIBC_NAMESPACE_DECL {
1718
namespace cpp {

libc/src/__support/CPP/span.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <stddef.h> // For size_t
1212

1313
#include "array.h" // For array
14+
#include "src/__support/macros/config.h"
1415
#include "type_traits.h" // For remove_cv_t, enable_if_t, is_same_v, is_const_v
1516

1617
#include "src/__support/macros/attributes.h"

libc/src/__support/CPP/string.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#include "src/__support/CPP/string_view.h"
1313
#include "src/__support/integer_to_string.h" // IntegerToString
14+
#include "src/__support/macros/config.h"
1415
#include "src/string/memory_utils/inline_memcpy.h"
1516
#include "src/string/memory_utils/inline_memset.h"
1617
#include "src/string/string_utils.h" // string_length

libc/src/__support/CPP/string_view.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_STRING_VIEW_H
1111

1212
#include "src/__support/common.h"
13+
#include "src/__support/macros/config.h"
1314

1415
#include <stddef.h>
1516

libc/src/__support/CPP/stringstream.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_STRINGSTREAM_H
1111

1212
#include "span.h"
13+
#include "src/__support/macros/config.h"
1314
#include "string_view.h"
1415
#include "type_traits.h"
1516

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_LVALUE_REFERENCE_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include "src/__support/CPP/type_traits/remove_reference.h"
1212
#include "src/__support/CPP/type_traits/type_identity.h"
13+
#include "src/__support/macros/config.h"
1314

1415
namespace LIBC_NAMESPACE_DECL {
1516
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ADD_RVALUE_REFERENCE_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALIGNED_STORAGE_H
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALIGNED_STORAGE_H
1111

12+
#include "src/__support/macros/config.h"
1213
#include <stddef.h> // size_t
1314

1415
namespace LIBC_NAMESPACE_DECL {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ALWAYS_FALSE_H
1111

1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314

1415
namespace LIBC_NAMESPACE_DECL {
1516
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_BOOL_CONSTANT_H
1010

1111
#include "src/__support/CPP/type_traits/integral_constant.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_CONDITIONAL_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "src/__support/CPP/type_traits/remove_cv.h"
1818
#include "src/__support/CPP/type_traits/remove_extent.h"
1919
#include "src/__support/CPP/type_traits/remove_reference.h"
20+
#include "src/__support/macros/config.h"
2021

2122
namespace LIBC_NAMESPACE_DECL {
2223
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_ENABLE_IF_H
1010

1111
#include "src/__support/CPP/type_traits/type_identity.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_FALSE_TYPE_H
1010

1111
#include "src/__support/CPP/type_traits/bool_constant.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_INTEGRAL_CONSTANT_H
1010

1111
#include "src/__support/macros/attributes.h" // LIBC_INLINE_VAR
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "src/__support/CPP/type_traits/is_same.h"
1818
#include "src/__support/CPP/utility/forward.h"
1919
#include "src/__support/macros/attributes.h" // LIBC_INLINE
20+
#include "src/__support/macros/config.h"
2021

2122
namespace LIBC_NAMESPACE_DECL {
2223
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "src/__support/CPP/type_traits/invoke.h"
1212
#include "src/__support/CPP/type_traits/type_identity.h"
1313
#include "src/__support/CPP/utility/declval.h"
14+
#include "src/__support/macros/config.h"
1415

1516
namespace LIBC_NAMESPACE_DECL {
1617
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "src/__support/CPP/type_traits/is_floating_point.h"
1313
#include "src/__support/CPP/type_traits/is_integral.h"
1414
#include "src/__support/macros/attributes.h"
15+
#include "src/__support/macros/config.h"
1516

1617
namespace LIBC_NAMESPACE_DECL {
1718
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "src/__support/CPP/type_traits/false_type.h"
1212
#include "src/__support/CPP/type_traits/true_type.h"
1313
#include "src/__support/macros/attributes.h"
14+
#include "src/__support/macros/config.h"
1415

1516
#include <stddef.h> // For size_t
1617

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "src/__support/CPP/type_traits/remove_all_extents.h"
1515
#include "src/__support/CPP/type_traits/true_type.h"
1616
#include "src/__support/macros/attributes.h"
17+
#include "src/__support/macros/config.h"
1718

1819
namespace LIBC_NAMESPACE_DECL {
1920
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "src/__support/CPP/type_traits/false_type.h"
1313
#include "src/__support/CPP/type_traits/is_union.h"
1414
#include "src/__support/macros/attributes.h"
15+
#include "src/__support/macros/config.h"
1516

1617
namespace LIBC_NAMESPACE_DECL {
1718
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "src/__support/CPP/type_traits/false_type.h"
1212
#include "src/__support/CPP/type_traits/true_type.h"
1313
#include "src/__support/macros/attributes.h"
14+
#include "src/__support/macros/config.h"
1415

1516
namespace LIBC_NAMESPACE_DECL {
1617
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_IS_CONSTANT_EVALUATED_H
1010

1111
#include "src/__support/macros/attributes.h"
12+
#include "src/__support/macros/config.h"
1213

1314
namespace LIBC_NAMESPACE_DECL {
1415
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "src/__support/CPP/type_traits/is_void.h"
1212
#include "src/__support/CPP/utility/declval.h"
1313
#include "src/__support/macros/attributes.h"
14+
#include "src/__support/macros/config.h"
1415

1516
namespace LIBC_NAMESPACE_DECL {
1617
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include "src/__support/CPP/type_traits/true_type.h"
1717
#include "src/__support/CPP/type_traits/type_identity.h"
1818
#include "src/__support/macros/attributes.h"
19+
#include "src/__support/macros/config.h"
1920

2021
namespace LIBC_NAMESPACE_DECL {
2122
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include "src/__support/CPP/type_traits/bool_constant.h"
1212
#include "src/__support/macros/attributes.h"
13+
#include "src/__support/macros/config.h"
1314

1415
namespace LIBC_NAMESPACE_DECL {
1516
namespace cpp {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "src/__support/macros/attributes.h"
1414

1515
#include "include/llvm-libc-macros/stdfix-macros.h"
16+
#include "src/__support/macros/config.h"
1617

1718
namespace LIBC_NAMESPACE_DECL {
1819
namespace cpp {

0 commit comments

Comments
 (0)