Ver Fonte

removed test includes in main

Kajetan Johannes Hammerle há 4 anos atrás
pai
commit
63c425f532
1 ficheiros alterados com 1 adições e 6 exclusões
  1. 1 6
      Main.cpp

+ 1 - 6
Main.cpp

@@ -2,14 +2,9 @@
 #include "tests/ListTests.h"
 #include "tests/BitArrayTests.h"
 
-#include "utils/HashMap.h"
-
-#include <unordered_map>
-#include <iostream>
-
 int main() {
     HashMapTests::test();
     ListTests::test();
-    BitArrayTests::test();
+    BitArrayTests::test();   
     return 0;
 }