[llvm] 9efe89d - BoundsChecking.cpp - tidy implicit header dependencies. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 13 09:08:44 PDT 2021


Author: Simon Pilgrim
Date: 2021-06-13T17:08:15+01:00
New Revision: 9efe89d82ff95e72d25772c5c7eb1f55e0b7492e

URL: https://github.com/llvm/llvm-project/commit/9efe89d82ff95e72d25772c5c7eb1f55e0b7492e
DIFF: https://github.com/llvm/llvm-project/commit/9efe89d82ff95e72d25772c5c7eb1f55e0b7492e.diff

LOG: BoundsChecking.cpp - tidy implicit header dependencies. NFCI.

We don't use <vector> but we do use std::pair (<utility>)

Added: 
    

Modified: 
    llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp b/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
index efb11b68a1e3..4ad07cab001a 100644
--- a/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
+++ b/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
@@ -32,7 +32,7 @@
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
 #include <cstdint>
-#include <vector>
+#include <utility>
 
 using namespace llvm;
 


        


More information about the llvm-commits mailing list