From 0bd80abaf206a79ca840c7ef886be832f73b5851 Mon Sep 17 00:00:00 2001
From: tehredplague <40381366+tehredplague@users.noreply.github.com>
Date: Fri, 4 Mar 2022 09:19:03 -0600
Subject: [PATCH] added <algorithm> and <limits> includes

the use of numeric_limits and min_elements requires the inclusion of <algorithm> and <limits>
---
 Chapter04/Search.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Chapter04/Search.cpp b/Chapter04/Search.cpp
index 56a8359..ce1e6f4 100644
--- a/Chapter04/Search.cpp
+++ b/Chapter04/Search.cpp
@@ -2,6 +2,8 @@
 #include <queue>
 #include <iostream>
 #include <unordered_map>
+#include <algorithm>
+#include <limits>
 
 struct GraphNode
 {
-- 
GitLab