Jpp test-rotations-new
the software that should make you happy
Loading...
Searching...
No Matches
debug_abrt.hh
Go to the documentation of this file.
1#ifndef __DEBUG_ABRT_HH
2#define __DEBUG_ABRT_HH
3
4#include <stdlib.h>
5
6/**
7 * \author cpellegrino
8 */
9
10template<typename T>
12{
13 if (sizeof(T) != size)
14 {
15 abort();
16 }
17}
18
19#endif
void __debug_abort_on_wrong_size_(size_t size)
Definition debug_abrt.hh:11