[lld] r295077 - Remove stray semicolon.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 14 09:36:23 PST 2017


Author: ruiu
Date: Tue Feb 14 11:36:23 2017
New Revision: 295077

URL: http://llvm.org/viewvc/llvm-project?rev=295077&view=rev
Log:
Remove stray semicolon.

Modified:
    lld/trunk/ELF/Config.h

Modified: lld/trunk/ELF/Config.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Config.h?rev=295077&r1=295076&r2=295077&view=diff
==============================================================================
--- lld/trunk/ELF/Config.h (original)
+++ lld/trunk/ELF/Config.h Tue Feb 14 11:36:23 2017
@@ -163,7 +163,7 @@ struct Configuration {
   // Returns true if we need to pass through relocations in input
   // files to the output file. Usually false because we consume
   // relocations.
-  bool copyRelocs() const { return Relocatable || EmitRelocs; };
+  bool copyRelocs() const { return Relocatable || EmitRelocs; }
 
   // Returns true if we are creating position-independent code.
   bool pic() const { return Pie || Shared; }




More information about the llvm-commits mailing list