diff options
Diffstat (limited to 'include/llvm/iPHINode.h')
-rw-r--r-- | include/llvm/iPHINode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/iPHINode.h b/include/llvm/iPHINode.h index 66afac6..0ac0d44 100644 --- a/include/llvm/iPHINode.h +++ b/include/llvm/iPHINode.h @@ -21,7 +21,7 @@ class BasicBlock; class PHINode : public Instruction { PHINode(const PHINode &PN); public: - PHINode(const Type *Ty, const string &Name = ""); + PHINode(const Type *Ty, const std::string &Name = ""); virtual Instruction *clone() const { return new PHINode(*this); } virtual const char *getOpcodeName() const { return "phi"; } |