make epicsNAN and epicsINF constants really constant

This commit is contained in:
Michael Davidsaver
2022-04-15 11:39:50 -07:00
parent 6ecc384116
commit 5485adacb9
8 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ static float makeINF ( void )
#endif
extern "C" {
float epicsNAN = NAN;
float epicsINF = INFINITY;
const float epicsNAN = NAN;
const float epicsINF = INFINITY;
}
#ifdef _MSC_VER