mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-06 22:48:30 +01:00
Use stdint types everywhere
R=mark at https://breakpad.appspot.com/535002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1121 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
c02002a581
commit
aeffe1056f
117 changed files with 1385 additions and 1379 deletions
|
|
@ -46,7 +46,7 @@ template<typename AddressType, typename EntryType>
|
|||
StaticContainedRangeMap<AddressType, EntryType>::StaticContainedRangeMap(
|
||||
const char *base)
|
||||
: base_(*(reinterpret_cast<const AddressType*>(base))),
|
||||
entry_size_(*(reinterpret_cast<const u_int32_t*>(base + sizeof(base_)))),
|
||||
entry_size_(*(reinterpret_cast<const uint32_t*>(base + sizeof(base_)))),
|
||||
entry_ptr_(reinterpret_cast<const EntryType *>(
|
||||
base + sizeof(base_) + sizeof(entry_size_))),
|
||||
map_(base + sizeof(base_) + sizeof(entry_size_) + entry_size_) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue