teak-llvm/clang/test/Sema/Inputs/conversion.h
John McCall acf0ee57b6 Track the location of the context requiring an implicit conversion and use it
to white-list conversions required by system headers.  rdar://problem/8232669

llvm-svn: 116029
2010-10-08 02:01:28 +00:00

5 lines
188 B
C

/* Fake system header for Sema/conversion.c */
#define LONG_MAX __LONG_MAX__
#define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)