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 59dffce commit aeffc01Copy full SHA for aeffc01
lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
@@ -3127,7 +3127,6 @@ size_t DWARFASTParserClang::ParseChildParameters(
3127
}
3128
3129
3130
- bool skip = false;
3131
if (is_artificial) {
3132
// In order to determine if a C++ member function is "const" we
3133
// have to look at the const-ness of "this"...
@@ -3150,10 +3149,7 @@ size_t DWARFASTParserClang::ParseChildParameters(
3150
3149
3151
3152
3153
- skip = true;
3154
- }
3155
-
3156
- if (!skip) {
+ } else {
3157
Type *type = die.ResolveTypeUID(param_type_die_form.Reference());
3158
if (type) {
3159
function_param_types.push_back(type->GetForwardCompilerType());
0 commit comments