[NFC][LLDB] Removing extra semicolons to silence -Wc++98-compat-extra-semi diagnostics
authorShafik Yaghmour <syaghmour@apple.com>
Tue, 23 Mar 2021 21:31:40 +0000 (14:31 -0700)
committerShafik Yaghmour <syaghmour@apple.com>
Tue, 23 Mar 2021 21:32:36 +0000 (14:32 -0700)
lldb/source/Plugins/Process/scripted/ScriptedProcess.cpp
lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h
lldb/tools/debugserver/source/MacOSX/ThreadInfo.h

index 72be0f9..b4ec4c7 100644 (file)
@@ -123,7 +123,7 @@ Status ScriptedProcess::DoLaunch(Module *exe_module,
   }
 
   return status;
-};
+}
 
 void ScriptedProcess::DidLaunch() {
   if (m_interpreter)
index 1843d92..1ef792b 100644 (file)
@@ -50,7 +50,7 @@ extern "C" void *LLDBSWIGPython_CastPyObjectToSBData(void *data);
 extern "C" void *LLDBSWIGPython_CastPyObjectToSBError(void *data);
 extern "C" void *LLDBSWIGPython_CastPyObjectToSBValue(void *data);
 
-}; // namespace lldb_private
+} // namespace lldb_private
 
 #endif // LLDB_ENABLE_PYTHON
 #endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SWIGPYTHONBRIDGE_H
index a114a47..592d50f 100644 (file)
@@ -20,6 +20,6 @@ public:
   std::string printable_name;
   uint32_t enum_value;
 };
-};
+}
 
 #endif // LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_THREADINFO_H