Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / test / t.Queue.c
index a393da2..9dd1986 100644 (file)
@@ -43,7 +43,7 @@ void t_queue_push_pop_basic()
        int n = 10;
 
        Queue* q = queue_new(double);
-       for (int i = 0; i < n; i++) 
+       for (int i = 0; i < n; i++)
                queue_push(q, (double) i);
        // iterate and check values
        double ckValue = 0.0;