diff options
Diffstat (limited to 'lib/VMCore/iCall.cpp')
-rw-r--r-- | lib/VMCore/iCall.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index 7f4efaf7b2..37eb24e86c 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -13,8 +13,8 @@ // CallInst Implementation //===----------------------------------------------------------------------===// -CallInst::CallInst(Value *Meth, const vector<Value*> ¶ms, - const string &Name) +CallInst::CallInst(Value *Meth, const std::vector<Value*> ¶ms, + const std::string &Name) : Instruction(cast<MethodType>(cast<PointerType>(Meth->getType()) ->getElementType())->getReturnType(), Instruction::Call, Name) { @@ -44,8 +44,9 @@ CallInst::CallInst(const CallInst &CI) //===----------------------------------------------------------------------===// InvokeInst::InvokeInst(Value *Meth, BasicBlock *IfNormal, \ - BasicBlock *IfException, const vector<Value*>¶ms, - const string &Name) + BasicBlock *IfException, + const std::vector<Value*> ¶ms, + const std::string &Name) : TerminatorInst(cast<MethodType>(cast<PointerType>(Meth->getType()) ->getElementType())->getReturnType(), Instruction::Invoke, Name) { |