Skip to content

Commit 47605ff

Browse files
[lldb] Fix a warning
This patch fixes: lldb/source/Target/ProcessTrace.cpp:23:33: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
1 parent 340cc17 commit 47605ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/ProcessTrace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using namespace lldb;
2121
using namespace lldb_private;
2222

23-
LLDB_PLUGIN_DEFINE(ProcessTrace);
23+
LLDB_PLUGIN_DEFINE(ProcessTrace)
2424

2525
llvm::StringRef ProcessTrace::GetPluginDescriptionStatic() {
2626
return "Trace process plug-in.";

0 commit comments

Comments
 (0)