From: Sean Hunt Date: Thu, 19 Aug 2010 00:03:05 +0000 (+0000) Subject: Remove three spurious semicolons X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5b38500197635e2f6d8bba5fe393d5969ed4e8b5;p=oota-llvm.git Remove three spurious semicolons git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111480 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/ClangAttrEmitter.cpp b/utils/TableGen/ClangAttrEmitter.cpp index b9fb7195315..463f684db9f 100644 --- a/utils/TableGen/ClangAttrEmitter.cpp +++ b/utils/TableGen/ClangAttrEmitter.cpp @@ -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;