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 a3bfbb9 commit f324c34Copy full SHA for f324c34
lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -6759,7 +6759,7 @@ size_t TypeSystemClang::GetIndexOfChildMemberWithName(
6759
if (field_type.GetIndexOfChildMemberWithName(
6760
name, omit_empty_base_classes, child_indexes))
6761
return child_indexes.size();
6762
- child_indexes = save_indices;
+ child_indexes = std::move(save_indices);
6763
} else if (field_name == name) {
6764
// We have to add on the number of base classes to this index!
6765
child_indexes.push_back(
0 commit comments