Include what you use
The code below relies on std::istream_iterator, but does not #include
<iterator> where that class is declared.
Tested: Code compiles on latest rebase.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Icb6c2c595ef703756a7a62a4c6c97a4503500f64
diff --git a/msl_verify.cpp b/msl_verify.cpp
index 0efedf3..e59e250 100644
--- a/msl_verify.cpp
+++ b/msl_verify.cpp
@@ -6,6 +6,7 @@
#include <filesystem>
#include <fstream>
+#include <iterator>
#include <regex>
namespace openpower