blob: 6b5e3287b74bbc136afeece505898a70093e7fc5 [file] [log] [blame]
Elliott Hughes52d62332012-07-27 17:40:29 -07001#undef NDEBUG
2#include <assert.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08003
Elliott Hughes52d62332012-07-27 17:40:29 -07004extern "C" void __cxa_pure_virtual() {
Elliott Hughes8f2a5a02013-03-15 15:30:25 -07005 // We can't call __libc_format_log from libstdc++ because it's hidden and in libc, so cheat.
Elliott Hughes52d62332012-07-27 17:40:29 -07006 assert(!"Pure virtual function called. Are you calling virtual methods from a destructor?");
7 /* NOTREACHED */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08008}