diff options
author | Pavel Labath <labath@google.com> | 2015-07-22 08:12:01 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-07-22 08:12:01 +0000 |
commit | cb213b3831f6677e90410e7c184b0a89f7e128bf (patch) | |
tree | 3dbe07741a5379e0eaff0437001cdf2f62277ce8 /lldb/source/Target/LanguageRuntime.cpp | |
parent | c2f33f6754ca689e609abe8e8cb33477e7a01b4e (diff) | |
download | bcm5719-llvm-cb213b3831f6677e90410e7c184b0a89f7e128bf.tar.gz bcm5719-llvm-cb213b3831f6677e90410e7c184b0a89f7e128bf.zip |
Fix warnings found by -Wextra-semi
patch by Eugene Zelenko.
llvm-svn: 242875
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index 1bec2063ad0..c1a4712abc9 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -34,7 +34,7 @@ public: } virtual - ~ExceptionSearchFilter() {}; + ~ExceptionSearchFilter() {} bool ModulePasses (const lldb::ModuleSP &module_sp) override @@ -493,6 +493,3 @@ LanguageRuntime::CreateExceptionSearchFilter () { return m_process->GetTarget().GetSearchFilterForModule(NULL); } - - - |