diff options
Diffstat (limited to 'lldb/source/Core/FormatEntity.cpp')
-rw-r--r-- | lldb/source/Core/FormatEntity.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Core/FormatEntity.cpp b/lldb/source/Core/FormatEntity.cpp index fa6ed394424..804682f64bd 100644 --- a/lldb/source/Core/FormatEntity.cpp +++ b/lldb/source/Core/FormatEntity.cpp @@ -1663,6 +1663,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eName, ss); } @@ -1713,6 +1714,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eNameWithNoArgs, ss); } @@ -1749,6 +1751,7 @@ FormatEntity::Format (const Entry &entry, if (language_plugin) { language_plugin_handled = language_plugin->GetFunctionDisplayName(sc, + exe_ctx, Language::FunctionNameRepresentation::eNameWithArgs, ss); } |