]> granicus.if.org Git - llvm/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281450 91177308-0d34-0410-b5e6-96231b3b80d8

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

index 318ce10ceaf0849629dc198533f687d059f86307..0c0b498f13751a5f96b977eaa4657c43b27a3cea 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 bd42befce3868d386592b2b9674c05a2ee0dfb98..6184ba2ea33d30120833c14ca97c4372cb1c4561 100644 (file)
@@ -22,6 +22,7 @@
 #define DEBUG_TYPE "cache-pruning"
 
 #include <set>
+#include <system_error>
 
 using namespace llvm;
 
index 9e52874de832689a8b5c71d554edb1d2f3977a3f..50ea4e9ce0c61224e7809cd420975d9065a1e192 100644 (file)
@@ -9,6 +9,7 @@
 #include "llvm/ADT/DeltaAlgorithm.h"
 #include <algorithm>
 #include <iterator>
+#include <set>
 using namespace llvm;
 
 DeltaAlgorithm::~DeltaAlgorithm() {
index 6b22691eb1ada2dc6e8f98b99bf68e939737a9e0..28d9127777fb4095e66fd62ceca91abd47f3e50b 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 357d0e378568bdaa10f8360b3e3ff6f03746393f..444aaa37c8c8360c08c0cdf44af06c794b2a2052 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