mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
14 lines
227 B
C++
14 lines
227 B
C++
|
const float huge = 340282346638528859811704183484516925440; // FLT_MAX
|
||
|
|
||
|
#ifdef DIVBYZERO
|
||
|
const float a = 1.0 / 0.0;
|
||
|
#endif
|
||
|
|
||
|
#ifdef OVERFLOW
|
||
|
const float a = huge * huge;
|
||
|
#endif
|
||
|
|
||
|
#ifdef UNDERFLOW
|
||
|
const float a = 1 / huge;
|
||
|
#endif
|