[Lldb-commits] [lldb] r311577 - ObjC: fix some -Wpedantic warnings by removing '; '
Saleem Abdulrasool via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 23 10:00:14 PDT 2017
Author: compnerd
Date: Wed Aug 23 10:00:14 2017
New Revision: 311577
URL: http://llvm.org/viewvc/llvm-project?rev=311577&view=rev
Log:
ObjC: fix some -Wpedantic warnings by removing ';'
Remove some stray ';' that were in the source code. NFC.
Modified:
lldb/trunk/source/Plugins/Language/ObjC/NSArray.cpp
Modified: lldb/trunk/source/Plugins/Language/ObjC/NSArray.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Language/ObjC/NSArray.cpp?rev=311577&r1=311576&r2=311577&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Language/ObjC/NSArray.cpp (original)
+++ lldb/trunk/source/Plugins/Language/ObjC/NSArray.cpp Wed Aug 23 10:00:14 2017
@@ -124,7 +124,7 @@ namespace Foundation109 {
using NSArrayMSyntheticFrontEnd =
GenericNSArrayMSyntheticFrontEnd<DataDescriptor_32, DataDescriptor_64>;
-};
+}
namespace Foundation1010 {
struct DataDescriptor_32 {
@@ -147,7 +147,7 @@ namespace Foundation1010 {
using NSArrayMSyntheticFrontEnd =
GenericNSArrayMSyntheticFrontEnd<DataDescriptor_32, DataDescriptor_64>;
-};
+}
namespace Foundation1428 {
struct DataDescriptor_32 {
@@ -166,7 +166,7 @@ namespace Foundation1428 {
using NSArrayMSyntheticFrontEnd =
GenericNSArrayMSyntheticFrontEnd<DataDescriptor_32, DataDescriptor_64>;
-};
+}
namespace Foundation1437 {
template <typename PtrType>
More information about the lldb-commits
mailing list