r258769 - [Sema] Remove stray semicolons.

David Majnemer via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 25 17:39:18 PST 2016


Author: majnemer
Date: Mon Jan 25 19:39:17 2016
New Revision: 258769

URL: http://llvm.org/viewvc/llvm-project?rev=258769&view=rev
Log:
[Sema] Remove stray semicolons.

No functional change is intended.

Modified:
    cfe/trunk/lib/Sema/SemaDeclCXX.cpp

Modified: cfe/trunk/lib/Sema/SemaDeclCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDeclCXX.cpp?rev=258769&r1=258768&r2=258769&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDeclCXX.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDeclCXX.cpp Mon Jan 25 19:39:17 2016
@@ -13070,7 +13070,7 @@ bool Sema::CheckOverridingFunctionReturn
     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::CheckOverridingFunctionReturn
     Diag(Old->getLocation(), diag::note_overridden_virtual_function)
         << Old->getReturnTypeSourceRange();
     return true;
-  };
+  }
 
   return false;
 }




More information about the cfe-commits mailing list