C++11下编译错误 ISO C++ forbids declaration of ‘typeof’ with no type

参考https://code.google.com/p/google-breakpad/issues/detail?id=481

ISO C++ forbids declaration of ‘typeof’ with no type

typedef ‘google_breakpad::typeof’ is initialized (use decltype instead)

因为 C++11 把关键字typeof改为decltype 了

so….