Warning, file /include/VecGeom/base/FpeEnable.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef VECGEOM_BASE_FpeEnable_H_
0002 #define VECGEOM_BASE_FpeEnable_H_
0003
0004 #if defined(__GNUC__) && !defined(__APPLE__)
0005
0006 #include <fenv.h>
0007
0008 static void __attribute__((constructor)) EnableFpeForTests()
0009 {
0010
0011 feenableexcept(FE_INVALID | FE_DIVBYZERO);
0012
0013 }
0014
0015 #endif
0016
0017
0018
0019
0020
0021
0022 #endif