Compile fix

This commit is contained in:
Joshua Granick
2015-09-01 15:12:13 -07:00
parent d099750327
commit a5c9ae8fa2

View File

@@ -97,12 +97,10 @@ class CURLEasy {
}*/
public static function reset (handle:CURL):CURLCode {
public static function reset (handle:CURL):Void {
#if ((cpp || neko || nodejs) && lime_curl)
return cast lime_curl_easy_reset (handle);
#else
return cast 0;
lime_curl_easy_reset (handle);
#end
}