From: Reid Spencer Date: Sun, 4 Jul 2004 12:15:11 +0000 (+0000) Subject: Correct syntax typo .. ; -> : X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7474d03578d371b0a0601ab5f05a0da321b6f1cb;p=oota-llvm.git Correct syntax typo .. ; -> : git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14619 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index f3810be0c2d..50248f21e07 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -357,7 +357,7 @@ struct UnsignedIntType : public Type { }; struct OtherType : public Type { - OtherType(std:;string name, TypeID id) : Type(name,id) {} + OtherType(std::string name, TypeID id) : Type(name,id) {} };