]> git.llucax.com Git - software/dgc/naive.git/blobdiff - gc/dynarray.d
Compare pointers explicitly against null using is and !is
[software/dgc/naive.git] / gc / dynarray.d
index f0d5218b7dce1c968f59af781c6c20292954aabb..bd387cf34fdc5adf75add0e72e5de4d3837a0d01 100644 (file)
@@ -106,7 +106,7 @@ public:
             if (new_capacity == 0)
                 new_capacity = 4;
         // reallocate the memory with the new_capacity
-        T* new_data = cast(T*) realloc(this.data, new_capacity);
+        T* new_data = cast(T*) realloc(this.data, new_capacity * T.sizeof);
         if (new_data is null)
             onOutOfMemoryError();
         this.data = new_data;
@@ -153,19 +153,19 @@ private:
         DynArray!(int) array;
         assert (array.size == 0);
         assert (array.capacity == 0);
-        assert (array.data == null);
+        assert (array.data is null);
         foreach (x; array)
             assert (false, "there should be no elements in the array");
         array.append(5);
         assert (array.size == 1);
         assert (array.capacity >= 1);
-        assert (array.data);
+        assert (array.data !is null);
         foreach (x; array)
             assert (x == 5);
         array.append(6);
         assert (array.size == 2);
         assert (array.capacity >= 2);
-        assert (array.data);
+        assert (array.data !is null);
         int i = 0;
         foreach (x; array)
             assert (x == 5 + i++);
@@ -173,19 +173,19 @@ private:
         array.remove(5);
         assert (array.size == 1);
         assert (array.capacity >= 1);
-        assert (array.data);
+        assert (array.data !is null);
         foreach (x; array)
             assert (x == 6);
         array.expand(100);
         assert (array.size == 1);
         assert (array.capacity >= 100);
-        assert (array.data);
+        assert (array.data !is null);
         foreach (x; array)
             assert (x == 6);
         array.clear();
         assert (array.size == 0);
         assert (array.capacity == 0);
-        assert (array.data == null);
+        assert (array.data is null);
         foreach (x; array)
             assert (false, "there should be no elements in the array");
     }