diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2021-03-23 14:31:40 -0700 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2021-03-23 14:32:36 -0700 |
commit | ec00502b9f4021112c22b87ff849ecb5505763dd (patch) | |
tree | de4009216a0c82f0de5b7905ce6d3ee0a4e98ced /lldb/source/Plugins/ScriptInterpreter/Python | |
parent | 99203f2004d031f2ef22f01e3c569d2775de1836 (diff) | |
download | llvm-ec00502b9f4021112c22b87ff849ecb5505763dd.zip llvm-ec00502b9f4021112c22b87ff849ecb5505763dd.tar.gz llvm-ec00502b9f4021112c22b87ff849ecb5505763dd.tar.bz2 |
[NFC][LLDB] Removing extra semicolons to silence -Wc++98-compat-extra-semi diagnostics
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h b/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h index 1843d92..1ef792bc 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h @@ -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 |