Правка регистра

This commit is contained in:
2020-04-21 10:59:42 +03:00
parent 95a197a873
commit ab740f7795
6 changed files with 23 additions and 24 deletions

View File

@ -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)