mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-10 08:28:10 +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
|
|
@ -565,7 +565,7 @@ TEST_F(Stabs, OnePublicSymbol) {
|
|||
stabs.set_endianness(kLittleEndian);
|
||||
stabs.set_value_size(4);
|
||||
|
||||
const u_int32_t kExpectedAddress = 0x9000;
|
||||
const uint32_t kExpectedAddress = 0x9000;
|
||||
const string kExpectedFunctionName("public_function");
|
||||
stabs
|
||||
.Stab(N_SECT, 1, 0, kExpectedAddress, kExpectedFunctionName);
|
||||
|
|
@ -584,9 +584,9 @@ TEST_F(Stabs, TwoPublicSymbols) {
|
|||
stabs.set_endianness(kLittleEndian);
|
||||
stabs.set_value_size(4);
|
||||
|
||||
const u_int32_t kExpectedAddress1 = 0xB0B0B0B0;
|
||||
const uint32_t kExpectedAddress1 = 0xB0B0B0B0;
|
||||
const string kExpectedFunctionName1("public_function");
|
||||
const u_int32_t kExpectedAddress2 = 0xF0F0F0F0;
|
||||
const uint32_t kExpectedAddress2 = 0xF0F0F0F0;
|
||||
const string kExpectedFunctionName2("something else");
|
||||
stabs
|
||||
.Stab(N_SECT, 1, 0, kExpectedAddress1, kExpectedFunctionName1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue