diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-21 13:23:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-21 13:23:42 +0000 |
commit | c5819944a2ea821ceee2aa1025ee40a0726040a7 (patch) | |
tree | 1da829a5331d23061e1b17ba91f68e71c6e740f0 | |
parent | e9ddc7f5059db79efb46ad0a010c9936cd2959e3 (diff) |
Add a missing std:: qualifier
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4244 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/InstrSelectionSupport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/InstrSelectionSupport.h b/include/llvm/CodeGen/InstrSelectionSupport.h index 3e48b12e64..b71e1c3ae3 100644 --- a/include/llvm/CodeGen/InstrSelectionSupport.h +++ b/include/llvm/CodeGen/InstrSelectionSupport.h @@ -54,7 +54,7 @@ int64_t GetConstantValueAsSignedInt (const Value *V, //--------------------------------------------------------------------------- Value* GetMemInstArgs (InstructionNode* memInstrNode, - vector<Value*>& idxVec, + std::vector<Value*>& idxVec, bool& allConstantIndices); |