forked from dueca/dueca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathundebprint.h
More file actions
47 lines (39 loc) · 834 Bytes
/
undebprint.h
File metadata and controls
47 lines (39 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ------------------------------------------------------------------ */
/* item : debprint.h.in
made by : Rene van Paassen
date : 180214
category : header file
description : Helper for debug printing
changes : 180214 first version
language : C++
copyright : (c) 2018 TUDelft-AE-C&S
copyright : (c) 2022 René van Paassen
license : EUPL-1.2
*/
#ifdef DEB
#undef DEB
#endif
#ifdef DEB0
#undef DEB0
#endif
#ifdef DEB1
#undef DEB1
#endif
#ifdef DEB2
#undef DEB2
#endif
#ifdef DEB3
#undef DEB3
#endif
#ifdef DEBPRINTLEVEL
#undef DEBPRINTLEVEL
#endif
#ifdef BUILD_DEBPRINT
#ifdef DEBDEF
#undef DEBDEF
#endif
#else
#ifdef DEBDEF
#error "DEBDEF defined?? Strange"
#endif
#endif