diff options
author | Martin Storsjö <martin@martin.st> | 2020-02-10 11:17:48 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2020-02-10 11:20:44 +0200 |
commit | 6115bd9ba2851469d372d0d7b36d87a3e1d8094b (patch) | |
tree | 497df7e0c28b3bc005845ba9f81bcccb56859c2e /lldb/source/Plugins/OperatingSystem/Python | |
parent | a5040d5ec97ecac9940275eb59175f0bdbd26ab4 (diff) | |
download | llvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.zip llvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.tar.gz llvm-6115bd9ba2851469d372d0d7b36d87a3e1d8094b.tar.bz2 |
[LLDB] Fix GCC warnings about extra semicolons. NFC.
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp index 98b7752..da65e9f 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp @@ -39,7 +39,7 @@ using namespace lldb; using namespace lldb_private; -LLDB_PLUGIN(OperatingSystemPython); +LLDB_PLUGIN(OperatingSystemPython) void OperatingSystemPython::Initialize() { PluginManager::RegisterPlugin(GetPluginNameStatic(), |