Browse Source

removed test includes in main

Kajetan Johannes Hammerle 4 năm trước cách đây
mục cha
commit
63c425f532
1 tập tin đã thay đổi với 1 bổ sung6 xóa
  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;
 }