BoundsChecking.cpp - tidy implicit header dependencies. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 13 Jun 2021 16:08:15 +0000 (17:08 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 13 Jun 2021 16:08:15 +0000 (17:08 +0100)
We don't use <vector> but we do use std::pair (<utility>)

llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp

index efb11b6..4ad07ca 100644 (file)
@@ -32,7 +32,7 @@
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
 #include <cstdint>
-#include <vector>
+#include <utility>
 
 using namespace llvm;