Remove three spurious semicolons

llvm-svn: 111480
This commit is contained in:
Alexis Hunt 2010-08-19 00:03:05 +00:00
parent f2b0bcb397
commit 4686927dba

View File

@ -71,9 +71,9 @@ namespace {
}
}
StringRef getLowerName() const { return lowerName; };
StringRef getUpperName() const { return upperName; };
StringRef getAttrName() const { return attrName; };
StringRef getLowerName() const { return lowerName; }
StringRef getUpperName() const { return upperName; }
StringRef getAttrName() const { return attrName; }
// These functions print the argument contents formatted in different ways.
virtual void writeAccessors(raw_ostream &OS) const = 0;