Просмотр исходного кода

added <algorithm> and <limits> includes

the use of numeric_limits and min_elements requires the inclusion of <algorithm> and <limits>
tehredplague 3 лет назад
Родитель
Сommit
0bd80abaf2
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      Chapter04/Search.cpp

+ 2 - 0
Chapter04/Search.cpp

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