Kaydet (Commit) ce2f7954 authored tarafından Andras Timar's avatar Andras Timar

fix ascii escaped unicode generation

Change-Id: I732a480e71c3f26ffde527c5e0eea36f814b8b03
üst de1cbc17
......@@ -88,7 +88,9 @@ namespace
rOfstream
<< "\\u"
<< std::setfill('0') << std::setw(2) << std::uppercase
<< std::hex << (cUniCode >> 8) << (cUniCode & 0xFF);
<< std::hex << (cUniCode >> 8)
<< std::setfill('0') << std::setw(2) << std::uppercase
<< std::hex << (cUniCode & 0xFF);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment