aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2020-02-10 11:17:48 +0200
committerMartin Storsjö <martin@martin.st>2020-02-10 11:20:44 +0200
commit6115bd9ba2851469d372d0d7b36d87a3e1d8094b (patch)
tree497df7e0c28b3bc005845ba9f81bcccb56859c2e /lldb/source/Plugins/ScriptInterpreter/Python
parenta5040d5ec97ecac9940275eb59175f0bdbd26ab4 (diff)
downloadllvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.zip
llvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.tar.gz
llvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.tar.bz2
[LLDB] Fix GCC warnings about extra semicolons. NFC.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
index fefc756..cc03627 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
+++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
@@ -56,7 +56,7 @@ using namespace lldb_private;
using namespace lldb_private::python;
using llvm::Expected;
-LLDB_PLUGIN(ScriptInterpreterPython);
+LLDB_PLUGIN(ScriptInterpreterPython)
// Defined in the SWIG source file
#if PY_MAJOR_VERSION >= 3