Unverified Commit eba1389a by Ryan Harrison Committed by GitHub

Replace incorrect uint32_t with correct int vars (#2235)

parent a0cce739
...@@ -92,8 +92,8 @@ public: ...@@ -92,8 +92,8 @@ public:
if (processedDerefs.find(&base) == processedDerefs.end()) { if (processedDerefs.find(&base) == processedDerefs.end()) {
processedDerefs.insert(&base); processedDerefs.insert(&base);
uint32_t blockIndex = -1; int blockIndex = -1;
uint32_t offset = -1; int offset = -1;
TList<TIntermBinary*> derefs; TList<TIntermBinary*> derefs;
TString baseName = base.getName(); TString baseName = base.getName();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment