blob: 18b076d95cfcd546edba3b2c97659bc422fb6945 [file] [log] [blame]
Douglas Gregor925296b2011-07-19 16:10:42 +00001#define STATIC_CAST static_cast
2
3template<typename T>
4void foo(T *p) {
5 (void)STATIC_CAST<T*>(0);
6}