BUGFIX implies UBFIX
This commit is contained in:
parent
b1197ac2da
commit
f7a729df30
1 changed files with 4 additions and 4 deletions
|
@ -23,15 +23,15 @@
|
||||||
#define UNITS_METRIC
|
#define UNITS_METRIC
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Uncomment to fix some identified minor bugs
|
||||||
|
//#define BUGFIX
|
||||||
|
|
||||||
// Various undefined behavior bugs may or may not prevent compilation with
|
// Various undefined behavior bugs may or may not prevent compilation with
|
||||||
// newer compilers. So always fix them when using a modern compiler.
|
// newer compilers. So always fix them when using a modern compiler.
|
||||||
#if MODERN
|
#if MODERN || defined(BUGFIX)
|
||||||
#ifndef UBFIX
|
#ifndef UBFIX
|
||||||
#define UBFIX
|
#define UBFIX
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Uncomment to fix some identified minor bugs
|
|
||||||
//#define BUGFIX
|
|
||||||
|
|
||||||
#endif // GUARD_CONFIG_H
|
#endif // GUARD_CONFIG_H
|
||||||
|
|
Loading…
Reference in a new issue