Remove three spurious semicolons

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sean Hunt 2010-08-19 00:03:05 +00:00
parent 7552a3df39
commit 5b38500197

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;