[Polly] Explicitly include all std headers
authorKrzysztof Parzyszek <kparzysz@quicinc.com>
Wed, 21 Apr 2021 17:50:40 +0000 (12:50 -0500)
committerKrzysztof Parzyszek <kparzysz@quicinc.com>
Wed, 21 Apr 2021 17:52:11 +0000 (12:52 -0500)
There were some recent header changes, and now some std classes
are no longer available in ScopDetection.cpp with the pre-existing
includes.

polly/lib/Analysis/ScopDetection.cpp

index c358f76..2d7c1c3 100644 (file)
 #include "llvm/Pass.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/raw_ostream.h"
+#include <algorithm>
 #include <cassert>
+#include <memory>
+#include <stack>
+#include <string>
+#include <utility>
+#include <vector>
 
 using namespace llvm;
 using namespace polly;