Skip to content

Commit a206cc1

Browse files
committed
Add missing include statements to standard headers
This is makes the code less dependent on transitive includes.
1 parent 200d838 commit a206cc1

File tree

98 files changed

+235
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+235
-37
lines changed

benchmark/BFS_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/BellmanFord_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/Boruvka_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/Connectivity_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/CycleCheck_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/DFS_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/Dial_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/Dijkstra_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/EulerPath_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

benchmark/FordFulkerson_BM.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include <benchmark/benchmark.h>
22

3+
#include <unordered_map>
4+
35
#include "CXXGraph/CXXGraph.hpp"
46
#include "Utilities.hpp"
57

0 commit comments

Comments
 (0)