We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf92c9 commit bc82236Copy full SHA for bc82236
lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
@@ -2007,9 +2007,9 @@ bool CPlusPlusLanguage::HandleFrameFormatVariable(
2007
case FormatEntity::Entry::Type::FunctionQualifiers: {
2008
auto quals_or_err = GetDemangledFunctionQualifiers(sc);
2009
if (!quals_or_err) {
2010
- LLDB_LOG_ERROR(
2011
- GetLog(LLDBLog::Language), quals_or_err.takeError(),
2012
- "Failed to handle ${{function.qualifiers}} frame-format variable: {0}");
+ LLDB_LOG_ERROR(GetLog(LLDBLog::Language), quals_or_err.takeError(),
+ "Failed to handle ${{function.qualifiers}} frame-format "
+ "variable: {0}");
2013
return false;
2014
}
2015
0 commit comments