mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 830485 - Style fix for hex parsing. r=vladan.
--HG-- extra : rebase_source : e8f695fd759da7f6fa261e6cd5df68db2e2c2d0f
This commit is contained in:
parent
3ba833ba75
commit
ea6747731a
@ -130,8 +130,10 @@ AddSharedLibraryInfoToStream(std::ostream& aStream, const SharedLibrary& aLib)
|
||||
std::string pdbAgeStr = breakpadId.substr(32, breakpadId.size() - 1);
|
||||
|
||||
std::stringstream stream;
|
||||
stream << std::hex << pdbAgeStr;
|
||||
stream << pdbAgeStr;
|
||||
|
||||
unsigned pdbAge;
|
||||
stream << std::hex;
|
||||
stream >> pdbAge;
|
||||
|
||||
#ifdef DEBUG
|
||||
|
Loading…
Reference in New Issue
Block a user