xref: /llvm-project/clang/test/Modules/Inputs/PR28794/LibAHeader.h (revision b21ee08e57173102b67bc18237b13555066862fd)
1 #ifndef LIB_A_HEADER
2 #define LIB_A_HEADER
3 
4 typedef __SIZE_TYPE__ size_t;
5 
6 template <typename = int, size_t SlabSize = 4096, size_t = SlabSize>
7 class BumpPtrAllocatorImpl;
8 
9 template <typename T, size_t SlabSize, size_t SizeThreshold>
10 void * operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &);
11 
12 #endif // LIB_A_HEADER
13