[LLDB] Remove a stray semicolon. NFC.
authorMartin Storsjo <martin@martin.st>
Mon, 23 Sep 2019 12:03:14 +0000 (12:03 +0000)
committerMartin Storsjo <martin@martin.st>
Mon, 23 Sep 2019 12:03:14 +0000 (12:03 +0000)
This fixes build warnings with at least GCC.

llvm-svn: 372588

lldb/source/Utility/Scalar.cpp

index 3393af9..e9aec17 100644 (file)
@@ -434,7 +434,7 @@ Scalar::Type Scalar::GetBestTypeForBitSize(size_t bit_size, bool sign) {
     if (bit_size <= 512) return Scalar::e_uint512;
   }
   return Scalar::e_void;
-};
+}
 
 void Scalar::TruncOrExtendTo(Scalar::Type type, uint16_t bits) {
   switch (type) {