aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-21 13:23:42 +0000
committerChris Lattner <sabre@nondot.org>2002-10-21 13:23:42 +0000
commitc5819944a2ea821ceee2aa1025ee40a0726040a7 (patch)
tree1da829a5331d23061e1b17ba91f68e71c6e740f0
parente9ddc7f5059db79efb46ad0a010c9936cd2959e3 (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.h2
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);