added std:: to vector
authorAnand Shukla <ashukla@cs.uiuc.edu>
Tue, 16 Jul 2002 00:04:15 +0000 (00:04 +0000)
committerAnand Shukla <ashukla@cs.uiuc.edu>
Tue, 16 Jul 2002 00:04:15 +0000 (00:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2916 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/ConstantReader.cpp

index 2fa392e5db55f19d58454e459c9ee30dacfd8e99..68d6a62249d2150e0dbcc158c36f01ce2b3d7646 100644 (file)
@@ -187,7 +187,7 @@ bool BytecodeParser::parseConstantValue(const uchar *&Buf, const uchar *EndBuf,
   if (read_vbr(Buf, EndBuf, isExprNumArgs)) return failure(true);
   if (isExprNumArgs) {
     unsigned opCode;
-    vector<Constant*> argVec;
+    std::vector<Constant*> argVec;
     argVec.reserve(isExprNumArgs);
     
     if (read_vbr(Buf, EndBuf, opCode)) return failure(true);
@@ -218,7 +218,7 @@ bool BytecodeParser::parseConstantValue(const uchar *&Buf, const uchar *EndBuf,
     if (isExprNumArgs == 1) {           // All one-operand expressions
       V = ConstantExpr::get(opCode, argVec[0], Ty);
     } else if (opCode == Instruction::GetElementPtr) { // GetElementPtr
-      vector<Value*> IdxList(argVec.begin()+1, argVec.end());
+      std::vector<Value*> IdxList(argVec.begin()+1, argVec.end());
       V = ConstantExpr::get(opCode, argVec[0], IdxList, Ty);
     } else {                            // All other 2-operand expressions
       V = ConstantExpr::get(opCode, argVec[0], argVec[1], Ty);