Skip to content
Snippets Groups Projects
Commit 2ec9ba84 authored by Josh Bell's avatar Josh Bell
Browse files

D'oh, try compiling before committing. (If it's any justification, CG was...

D'oh, try compiling before committing. (If it's any justification, CG was compiling so I could run home...)
parent d06e5e35
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ void encode_character(std::ostream& ostr, std::string::value_type val) ...@@ -48,7 +48,7 @@ void encode_character(std::ostream& ostr, std::string::value_type val)
ostr << "%" << std::uppercase << std::hex << std::setw(2) << std::setfill('0') ostr << "%" << std::uppercase << std::hex << std::setw(2) << std::setfill('0')
// VWR-4010 Cannot cast to U32 because sign-extension on // VWR-4010 Cannot cast to U32 because sign-extension on
// chars > 128 will result in FFFFFFC3 instead of F3. // chars > 128 will result in FFFFFFC3 instead of F3.
<< static_cast<S32>(static_cast<U8>(c)); << static_cast<S32>(static_cast<U8>(val));
} }
// static // static
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment