[Lldb-commits] [lldb] 6612fab - [lldb] remove a superfluous semicolon
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 26 05:49:37 PST 2019
Author: Pavel Labath
Date: 2019-11-26T14:49:16+01:00
New Revision: 6612fabc47f16d265d169b5b73dc8070dde436a8
URL: https://github.com/llvm/llvm-project/commit/6612fabc47f16d265d169b5b73dc8070dde436a8
DIFF: https://github.com/llvm/llvm-project/commit/6612fabc47f16d265d169b5b73dc8070dde436a8.diff
LOG: [lldb] remove a superfluous semicolon
Added:
Modified:
lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
Removed:
################################################################################
diff --git a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
index b4d8ba2218a1..d556aae1c458 100644
--- a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
@@ -62,7 +62,7 @@ bool CPPLanguageRuntime::GetObjectDescription(
bool contains_lambda_identifier(llvm::StringRef &str_ref) {
return str_ref.contains("$_") || str_ref.contains("'lambda'");
-};
+}
CPPLanguageRuntime::LibCppStdFunctionCallableInfo
line_entry_helper(Target &target, const SymbolContext &sc, Symbol *symbol,
More information about the lldb-commits
mailing list