From f03841e79a886dadeaeeca9b37b788040834c04c Mon Sep 17 00:00:00 2001 From: Jinguang Date: Sat, 19 Nov 2022 06:35:04 +0800 Subject: [PATCH] Description:[fix] fixed the C++ compile error for std::find (#241) Bug: NA Test: 1. add "#include " on fisrt line of the file 2. It could be normally compiler, or it will report compile error --- 07_dijkstras_algorithm/c++11/01_dijkstras_algorithm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/07_dijkstras_algorithm/c++11/01_dijkstras_algorithm.cpp b/07_dijkstras_algorithm/c++11/01_dijkstras_algorithm.cpp index f0e069d..1d04a6d 100644 --- a/07_dijkstras_algorithm/c++11/01_dijkstras_algorithm.cpp +++ b/07_dijkstras_algorithm/c++11/01_dijkstras_algorithm.cpp @@ -1,3 +1,4 @@ +#include #include #include #include