Skip to content

Commit 46111fa

Browse files
committed
Fix last commit... removing () from std::hex
1 parent dc477f4 commit 46111fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/stringutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ namespace StringUtils
182182
result= "0x";
183183

184184
std::stringstream buf;
185-
buf << std::hex() << (int)(c & 0xff);
185+
buf << std::hex << (int)(c & 0xff);
186186

187187
result.append( buf.str() );
188188

0 commit comments

Comments
 (0)