소스 검색

fixed xcode warning in hl/c

Nicolas Cannasse 7 년 전
부모
커밋
7779fece57
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/generators/hl2c.ml

+ 1 - 1
src/generators/hl2c.ml

@@ -134,7 +134,7 @@ let ctype t =
 	if nptr = 0 then t else t ^ String.make nptr '*'
 
 let cast_fun s args t =
-	sprintf "((%s (*)(%s))%s)" (ctype t) (String.concat "," (List.map ctype args)) s
+	sprintf "((%s (*)(%s))%s)" (ctype t) (if args = [] then "void" else String.concat "," (List.map ctype args)) s
 
 let dyn_value_field t =
 	"->v." ^ match t with