#ifndef __DEBUG_ABRT_HH #define __DEBUG_ABRT_HH #include /** * \author cpellegrino */ template void __debug_abort_on_wrong_size_(size_t size) { if (sizeof(T) != size) { abort(); } } #endif