mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-28 15:39:27 +00:00
toString( int ) uses hex for large values
now matches behaviour of unsigned int
This commit is contained in:
parent
bd9fbe25f6
commit
ff9e51df7f
3 changed files with 6 additions and 3 deletions
|
@ -98,7 +98,10 @@ std::string toString( wchar_t* const value )
|
|||
|
||||
std::string toString( int value ) {
|
||||
std::ostringstream oss;
|
||||
oss << value;
|
||||
if( value > 8192 )
|
||||
oss << "0x" << std::hex << value;
|
||||
else
|
||||
oss << value;
|
||||
return oss.str();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue