Ver Fonte

closes issue #1998

Simon Krajewski há 12 anos atrás
pai
commit
4bbc62d02a
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      std/cpp/_std/haxe/ds/ObjectMap.hx

+ 1 - 1
std/cpp/_std/haxe/ds/ObjectMap.hx

@@ -47,7 +47,7 @@ class ObjectMap<K:haxe.Constraints.ObjectMapKey,V> implements Map.IMap<K,V> {
 
 
 	public function remove( key : K ) : Bool {
 	public function remove( key : K ) : Bool {
 		var id = untyped __global__.__hxcpp_obj_id(key);
 		var id = untyped __global__.__hxcpp_obj_id(key);
-		return __Internal.remove(id);
+		__Internal.remove(id);
 		return __KeyRefs.remove(id);
 		return __KeyRefs.remove(id);
 	}
 	}