From: David Majnemer Date: Tue, 26 Jan 2016 01:39:17 +0000 (+0000) Subject: [Sema] Remove stray semicolons. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b59d4bdbdff38b8d8c772fc41c67c7855d1e4249;p=clang [Sema] Remove stray semicolons. No functional change is intended. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258769 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDeclCXX.cpp b/lib/Sema/SemaDeclCXX.cpp index fc1c2ec75f..b7e03e3eb6 100644 --- a/lib/Sema/SemaDeclCXX.cpp +++ b/lib/Sema/SemaDeclCXX.cpp @@ -13070,7 +13070,7 @@ bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, Diag(Old->getLocation(), diag::note_overridden_virtual_function) << Old->getReturnTypeSourceRange(); return true; - }; + } // The new class type must have the same or less qualifiers as the old type. @@ -13082,7 +13082,7 @@ bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, Diag(Old->getLocation(), diag::note_overridden_virtual_function) << Old->getReturnTypeSourceRange(); return true; - }; + } return false; }