浏览代码

Fix for extends void vars.

Mark Sibly 9 年之前
父节点
当前提交
892dccb7dc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/mx2new/translator_cpp.monkey2

+ 1 - 1
src/mx2new/translator_cpp.monkey2

@@ -150,7 +150,7 @@ Class Translator_CPP Extends Translator
 		End
 
 		Local ctype:=TCast<ClassType>( type )
-		If ctype And (ctype.cdecl.kind="class" Or ctype.cdecl.kind="interface")
+		If ctype And Not ctype.IsVoid And (ctype.cdecl.kind="class" Or ctype.cdecl.kind="interface")
 			Return gc+ClassName( ctype )+">"
 		Endif