소스 검색

Fixed [] not available for structs. Fixes #543.

Brucey 4 년 전
부모
커밋
52cfdb4cf5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      expr.bmx

+ 1 - 1
expr.bmx

@@ -2272,7 +2272,7 @@ Type TIndexExpr Extends TExpr
 		Next
 		
 		' operator overload?
-		If TObjectType(expr.exprType) And Not TObjectType(expr.exprType).classDecl.IsStruct() Then
+		If TObjectType(expr.exprType) Then
 			Local args:TExpr[]
 			Local op:String
 			If set Then