mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-2157 Remove use of uint
This commit is contained in:
parent
0095aef095
commit
14d1a107e8
3 changed files with 3 additions and 3 deletions
|
@ -1277,7 +1277,7 @@ void Architecture::parseCompilerConfig(DocumentStorage &store)
|
||||||
|
|
||||||
uint4 elemId = decoder.openElement(ELEM_COMPILER_SPEC);
|
uint4 elemId = decoder.openElement(ELEM_COMPILER_SPEC);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
uint subId = decoder.peekElement();
|
uint4 subId = decoder.peekElement();
|
||||||
if (subId == 0) break;
|
if (subId == 0) break;
|
||||||
if (subId == ELEM_DEFAULT_PROTO)
|
if (subId == ELEM_DEFAULT_PROTO)
|
||||||
decodeDefaultProto(decoder);
|
decodeDefaultProto(decoder);
|
||||||
|
|
|
@ -3185,7 +3185,7 @@ void ProtoStoreInternal::decode(Decoder &decoder,ProtoModel *model)
|
||||||
|
|
||||||
uint4 elemId = decoder.openElement(ELEM_INTERNALLIST);
|
uint4 elemId = decoder.openElement(ELEM_INTERNALLIST);
|
||||||
for(;;) { // This is only the input params
|
for(;;) { // This is only the input params
|
||||||
uint subId = decoder.openElement(); // <retparam> or <param>
|
uint4 subId = decoder.openElement(); // <retparam> or <param>
|
||||||
if (subId == 0) break;
|
if (subId == 0) break;
|
||||||
string name;
|
string name;
|
||||||
uint4 flags = 0;
|
uint4 flags = 0;
|
||||||
|
|
|
@ -3753,7 +3753,7 @@ void TypeFactory::decodeCoreTypes(Decoder &decoder)
|
||||||
void TypeFactory::decodeDataOrganization(Decoder &decoder)
|
void TypeFactory::decodeDataOrganization(Decoder &decoder)
|
||||||
|
|
||||||
{
|
{
|
||||||
uint elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
uint4 elemId = decoder.openElement(ELEM_DATA_ORGANIZATION);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
uint4 subId = decoder.openElement();
|
uint4 subId = decoder.openElement();
|
||||||
if (subId == 0) break;
|
if (subId == 0) break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue