[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / PR28794 / LibAHeader.h
blob31aa02e848bdd16603f57290be7534cee5cc6dcf
1 #ifndef LIB_A_HEADER
2 #define LIB_A_HEADER
4 typedef __SIZE_TYPE__ size_t;
6 template <typename = int, size_t SlabSize = 4096, size_t = SlabSize>
7 class BumpPtrAllocatorImpl;
9 template <typename T, size_t SlabSize, size_t SizeThreshold>
10 void * operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &);
12 #endif // LIB_A_HEADER