Added support for default values of arguments with uint type

This commit is contained in:
alexey.lysiuk 2018-03-07 15:58:06 +02:00
commit 81bc05b7c5
3 changed files with 6 additions and 4 deletions

View file

@ -604,7 +604,7 @@ class FxIntCast : public FxExpression
public:
FxIntCast(FxExpression *x, bool nowarn, bool explicitly = false);
FxIntCast(FxExpression *x, bool nowarn, bool explicitly = false, bool isunsigned = false);
~FxIntCast();
FxExpression *Resolve(FCompileContext&);