[Lldb-commits] [lldb] r372588 - [LLDB] Remove a stray semicolon. NFC.

Martin Storsjo via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 23 05:03:14 PDT 2019


Author: mstorsjo
Date: Mon Sep 23 05:03:14 2019
New Revision: 372588

URL: http://llvm.org/viewvc/llvm-project?rev=372588&view=rev
Log:
[LLDB] Remove a stray semicolon. NFC.

This fixes build warnings with at least GCC.

Modified:
    lldb/trunk/source/Utility/Scalar.cpp

Modified: lldb/trunk/source/Utility/Scalar.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/Scalar.cpp?rev=372588&r1=372587&r2=372588&view=diff
==============================================================================
--- lldb/trunk/source/Utility/Scalar.cpp (original)
+++ lldb/trunk/source/Utility/Scalar.cpp Mon Sep 23 05:03:14 2019
@@ -434,7 +434,7 @@ Scalar::Type Scalar::GetBestTypeForBitSi
     if (bit_size <= 512) return Scalar::e_uint512;
   }
   return Scalar::e_void;
-};
+}
 
 void Scalar::TruncOrExtendTo(Scalar::Type type, uint16_t bits) {
   switch (type) {




More information about the lldb-commits mailing list