Forráskód Böngészése

added <algorithm> and <limits> includes

the use of numeric_limits and min_elements requires the inclusion of <algorithm> and <limits>
tehredplague 3 éve
szülő
commit
0bd80abaf2
1 módosított fájl, 2 hozzáadás és 0 törlés
  1. 2 0
      Chapter04/Search.cpp

+ 2 - 0
Chapter04/Search.cpp

@@ -2,6 +2,8 @@
 #include <queue>
 #include <queue>
 #include <iostream>
 #include <iostream>
 #include <unordered_map>
 #include <unordered_map>
+#include <algorithm>
+#include <limits>
 
 
 struct GraphNode
 struct GraphNode
 {
 {