فهرست منبع

[oops] merging is hard

Simon Krajewski 6 سال پیش
والد
کامیت
58790a30cc
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      src/codegen/dotnet.ml
  2. 1 1
      src/codegen/java.ml

+ 1 - 1
src/codegen/dotnet.ml

@@ -1221,7 +1221,7 @@ let add_net_lib com file std =
 	in
 	in
 	let net_lib = new net_library com file real_file std in
 	let net_lib = new net_library com file real_file std in
 	com.load_extern_type <- com.load_extern_type @ [net_lib#build];
 	com.load_extern_type <- com.load_extern_type @ [net_lib#build];
-	com.native_libs.net_libs <- (net_lib :> (net_lib_type,unit) native_library) :: com.native_libs.net_libs
+	com.native_libs.net_libs <- (net_lib :> (net_lib_type,unit) native_library) :: com.native_libs.net_libs;
 	com.native_libs.all_libs <- net_lib#get_file_path :: com.native_libs.all_libs
 	com.native_libs.all_libs <- net_lib#get_file_path :: com.native_libs.all_libs
 
 
 let before_generate com =
 let before_generate com =

+ 1 - 1
src/codegen/java.ml

@@ -1207,7 +1207,7 @@ let add_java_lib com name std =
 	let build path p = java_lib#build path p in
 	let build path p = java_lib#build path p in
 	(* TODO: add_dependency m mdep *)
 	(* TODO: add_dependency m mdep *)
 	com.load_extern_type <- com.load_extern_type @ [build];
 	com.load_extern_type <- com.load_extern_type @ [build];
-	com.native_libs.java_libs <- (java_lib :> (java_lib_type,unit) native_library) :: com.native_libs.java_libs
+	com.native_libs.java_libs <- (java_lib :> (java_lib_type,unit) native_library) :: com.native_libs.java_libs;
 	com.native_libs.all_libs <- java_lib#get_file_path :: com.native_libs.all_libs
 	com.native_libs.all_libs <- java_lib#get_file_path :: com.native_libs.all_libs
 
 
 let before_generate con =
 let before_generate con =