• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define STATIC_CAST static_cast
2 
3 template<typename T>
foo(T * p)4 void foo(T *p) {
5   (void)STATIC_CAST<T*>(0);
6 }
7