Fix type bug that breaks 64-bit OSX build.
This commit is contained in:
parent
c951c59232
commit
46f2bd2080
1 changed files with 1 additions and 1 deletions
|
@ -5003,7 +5003,7 @@ class Compiler : public ErrorSink {
|
|||
return pGen->gtst(0, 0);
|
||||
}
|
||||
|
||||
void block(int* breakLabel, int continueAddress, bool outermostFunctionBlock) {
|
||||
void block(intptr_t* breakLabel, intptr_t continueAddress, bool outermostFunctionBlock) {
|
||||
intptr_t a, n, t;
|
||||
|
||||
Type* pBaseType;
|
||||
|
|
Loading…
Reference in a new issue