diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-02-28 15:36:15 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-02-28 15:36:15 +0000 |
commit | 85fdea03687e45dfde025867fe98ea24ac74c501 (patch) | |
tree | f6dcaaf6e2b8f8efc01d2dfcc195b004bc7c22c2 | |
parent | cd7a099c1f3636e5d3b6dcd3a6af5006f194fe25 (diff) |
Remove stray semi-colons.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151631 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index db910d9f3a..f0682f2de9 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -1080,7 +1080,7 @@ public: virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl); - virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {}; + virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {} virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder, const ObjCProtocolDecl *PD); @@ -1335,7 +1335,7 @@ public: virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl); - virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {}; + virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {} virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder, const ObjCProtocolDecl *PD); |