Merge pull request #1294 from dgkoch/dgkoch_build_fixes4
Fix build several build errors
This commit is contained in:
commit
075c8c11e2
3 changed files with 5 additions and 5 deletions
|
|
@ -82,7 +82,7 @@ const TConstUnion* TAttributeArgs::getConstUnion(TBasicType basicType, int argNu
|
|||
if (args == nullptr)
|
||||
return nullptr;
|
||||
|
||||
if (argNum >= args->getSequence().size())
|
||||
if (argNum >= (int)args->getSequence().size())
|
||||
return nullptr;
|
||||
|
||||
const TConstUnion* constVal = &args->getSequence()[argNum]->getAsConstantUnion()->getConstArray()[0];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue