Remove three spurious semicolons
authorSean Hunt <rideau3@gmail.com>
Thu, 19 Aug 2010 00:03:05 +0000 (00:03 +0000)
committerSean Hunt <rideau3@gmail.com>
Thu, 19 Aug 2010 00:03:05 +0000 (00:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111480 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/ClangAttrEmitter.cpp

index b9fb719531575f78912f4e7a323d1374f40b3ef9..463f684db9f434761f21ac364b31c6bf7e05e202 100644 (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;