GP-2157 Remove use of uint

This commit is contained in:
caheckman 2022-06-21 16:54:15 -04:00
parent 0095aef095
commit 14d1a107e8
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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;

View file

@ -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;