Correct syntax typo .. ; -> :
authorReid Spencer <rspencer@reidspencer.com>
Sun, 4 Jul 2004 12:15:11 +0000 (12:15 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 4 Jul 2004 12:15:11 +0000 (12:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14619 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Type.cpp

index f3810be0c2d14b9b1b1139655809e10854b1653f..50248f21e074161b2da453be1d83bb25e8804423 100644 (file)
@@ -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) {}
 };