فهرست منبع

weakKeys for Cpp too

Simon Krajewski 12 سال پیش
والد
کامیت
92471a8206
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/cpp/_std/haxe/ds/ObjectMap.hx

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

@@ -26,7 +26,7 @@ class ObjectMap<K,V> {
    // TODO: Might need to add separate hash to keep track of references to keys
 	private var __Internal : IntMap<V>;
 
-	public function new() : Void {
+	public function new(?weakKeys:Bool = false) : Void {
 		__Internal = new IntMap<V>();
 	}