소스 검색

pass string, not pointer, to hxcpp_parse_float

Hugh Sanderson 15 년 전
부모
커밋
129e27ef1e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/Std.hx

+ 1 - 1
std/Std.hx

@@ -141,7 +141,7 @@ class Std {
 		#elseif php
 		__php__("is_numeric($x) ? floatval($x) : acos(1.01)");
 		#elseif cpp
-		__global__.__hxcpp_parse_float(x.__s);
+		__global__.__hxcpp_parse_float(x);
 		#else
 		0;
 		#end