Browse Source

fixed clear()

Nicolas Cannasse 17 years ago
parent
commit
d79862e137
1 changed files with 1 additions and 0 deletions
  1. 1 0
      std/List.hx

+ 1 - 0
std/List.hx

@@ -138,6 +138,7 @@ class List<T> {
 	**/
 	public function clear() : Void {
 		h = null;
+		q = null;
 		length = 0;
 	}