Explorar o código

SizeOf() now returns a Size_T. Resolves #541.

Brucey %!s(int64=4) %!d(string=hai) anos
pai
achega
d94e61c897
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      expr.bmx

+ 1 - 1
expr.bmx

@@ -3181,7 +3181,7 @@ Type TSizeOfExpr Extends TBuiltinExpr
 	Method Semant:TExpr(options:Int = 0)
 		If exprType Return Self
 		expr=expr.Semant()
-		exprType=New TIntType
+		exprType=New TSizeTType
 		Return Self
 	End Method