mirror of
https://github.com/catchorg/Catch2.git
synced 2025-12-23 02:12:11 +01:00
@@ -103,7 +103,7 @@ inline std::string toString( unsigned long value ) {
|
||||
}
|
||||
|
||||
inline std::string toString( unsigned int value ) {
|
||||
return toString( (unsigned long)value );
|
||||
return toString( static_cast<unsigned long>( value ) );
|
||||
}
|
||||
|
||||
inline std::string toString( const double value ) {
|
||||
|
||||
Reference in New Issue
Block a user