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 681ceaa commit 05bc4d4Copy full SHA for 05bc4d4
lldb/source/Commands/CommandObjectPlugin.cpp
@@ -126,7 +126,8 @@ static int ActOnMatchingPlugins(
126
127
for (const PluginNamespace &plugin_namespace : PluginNamespaces) {
128
std::vector<RegisteredPluginInfo> matching_plugins;
129
- for (const RegisteredPluginInfo &plugin_info : plugin_namespace.get_info()) {
+ for (const RegisteredPluginInfo &plugin_info :
130
+ plugin_namespace.get_info()) {
131
std::string qualified_name =
132
(plugin_namespace.name + "." + plugin_info.name).str();
133
if (pattern.match(qualified_name))
0 commit comments