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 c2ef63e commit 36b5230Copy full SHA for 36b5230
src/java_bytecode/java_bytecode_parse_tree.cpp
@@ -33,6 +33,9 @@ void java_bytecode_parse_treet::classt::swap(
33
other.fields.swap(fields);
34
other.methods.swap(methods);
35
other.annotations.swap(annotations);
36
+ std::swap(
37
+ other.attribute_bootstrapmethods_read, attribute_bootstrapmethods_read);
38
+ std::swap(other.lambda_method_handle_map, lambda_method_handle_map);
39
}
40
41
void java_bytecode_parse_treet::output(std::ostream &out) const
0 commit comments