[Lldb-commits] [lldb] r374029 - Fix a -Wpedantic warning

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 8 02:05:25 PDT 2019


Author: labath
Date: Tue Oct  8 02:05:25 2019
New Revision: 374029

URL: http://llvm.org/viewvc/llvm-project?rev=374029&view=rev
Log:
Fix a -Wpedantic warning

namespace-closing '}' don't need ';'.

Modified:
    lldb/trunk/include/lldb/API/SBCommandReturnObject.h

Modified: lldb/trunk/include/lldb/API/SBCommandReturnObject.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBCommandReturnObject.h?rev=374029&r1=374028&r2=374029&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBCommandReturnObject.h (original)
+++ lldb/trunk/include/lldb/API/SBCommandReturnObject.h Tue Oct  8 02:05:25 2019
@@ -17,7 +17,7 @@
 
 namespace lldb_private {
 class SBCommandReturnObjectImpl;
-};
+}
 
 namespace lldb {
 




More information about the lldb-commits mailing list