Правка регистра
This commit is contained in:
@ -18,8 +18,8 @@ bool almost_equal_ulps_and_abs( const float a, const float b,
|
||||
return( true );
|
||||
}
|
||||
|
||||
float_cmp_t uA( a );
|
||||
float_cmp_t uB( b );
|
||||
FloatCmp uA( a );
|
||||
FloatCmp uB( b );
|
||||
|
||||
// Different signs means they do not match.
|
||||
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access)
|
||||
@ -51,8 +51,8 @@ bool almost_equal_ulps_and_abs( const double a, const double b,
|
||||
return( true );
|
||||
}
|
||||
|
||||
double_cmp_t uA( a );
|
||||
double_cmp_t uB( b );
|
||||
DoubleCmp uA( a );
|
||||
DoubleCmp uB( b );
|
||||
|
||||
// Different signs means they do not match.
|
||||
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access)
|
||||
|
Reference in New Issue
Block a user