1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

Remove some unused <vector> includes. NFCI.

<vector> (unlike many other c++ headers) is relatively clean, so if the file doesn't use std::vector then it shouldn't need the header.
This commit is contained in:
Simon Pilgrim 2021-01-06 15:50:11 +00:00
parent 4a6ff80b75
commit 6e5bfd1236
3 changed files with 2 additions and 6 deletions

View File

@ -9,13 +9,11 @@
#ifndef LLVM_INLINEADVISOR_H_
#define LLVM_INLINEADVISOR_H_
#include <memory>
#include <unordered_set>
#include <vector>
#include "llvm/Analysis/InlineCost.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/PassManager.h"
#include <memory>
#include <unordered_set>
namespace llvm {
class BasicBlock;

View File

@ -57,7 +57,6 @@
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
namespace llvm {

View File

@ -20,7 +20,6 @@
#include "llvm/IR/DebugLoc.h"
#include "llvm/Support/CBindingWrapping.h"
#include <cstdint>
#include <vector>
namespace llvm {