aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-07-04 12:15:11 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-07-04 12:15:11 +0000
commit7474d03578d371b0a0601ab5f05a0da321b6f1cb (patch)
tree21abdfcf71c46d48c2ce708502f1ce45007d92d3
parent6e885d0dd52a181a74efb882025f840750c1df21 (diff)
Correct syntax typo .. ; -> :
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14619 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp
index f3810be0c2..50248f21e0 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) {}
};