Missing includes.
authorVassil Vassilev <v.g.vassilev@gmail.com>
Wed, 14 Sep 2016 08:55:18 +0000 (08:55 +0000)
committerVassil Vassilev <v.g.vassilev@gmail.com>
Wed, 14 Sep 2016 08:55:18 +0000 (08:55 +0000)
llvm-svn: 281450

llvm/lib/Support/APInt.cpp
llvm/lib/Support/CachePruning.cpp
llvm/lib/Support/DeltaAlgorithm.cpp
llvm/lib/Support/Error.cpp
llvm/lib/Support/LockFileManager.cpp

index 318ce10..0c0b498 100644 (file)
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/MathExtras.h"
 #include "llvm/Support/raw_ostream.h"
+#include <climits>
 #include <cmath>
 #include <cstdlib>
 #include <cstring>
-#include <limits>
 using namespace llvm;
 
 #define DEBUG_TYPE "apint"
index bd42bef..6184ba2 100644 (file)
@@ -22,6 +22,7 @@
 #define DEBUG_TYPE "cache-pruning"
 
 #include <set>
+#include <system_error>
 
 using namespace llvm;
 
index 9e52874..50ea4e9 100644 (file)
@@ -9,6 +9,7 @@
 #include "llvm/ADT/DeltaAlgorithm.h"
 #include <algorithm>
 #include <iterator>
+#include <set>
 using namespace llvm;
 
 DeltaAlgorithm::~DeltaAlgorithm() {
index 6b22691..28d9127 100644 (file)
@@ -11,6 +11,7 @@
 #include "llvm/ADT/Twine.h"
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/ManagedStatic.h"
+#include <system_error>
 
 
 using namespace llvm;
index 357d0e3..444aaa3 100644 (file)
@@ -21,6 +21,7 @@
 #include <ctime>
 #include <memory>
 #include <tuple>
+#include <system_error>
 #include <sys/stat.h>
 #include <sys/types.h>
 #if LLVM_ON_WIN32