File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1015,19 +1015,18 @@ static void find_and_replace_parameters(
10151015// / \param annotations: The java_annotationt collection to populate
10161016void convert_annotations (
10171017 const java_bytecode_parse_treet::annotationst &parsed_annotations,
1018- std::vector<java_annotationt> &annotations )
1018+ std::vector<java_annotationt> &java_annotations )
10191019{
10201020 for (const auto &annotation : parsed_annotations)
10211021 {
1022- annotations .emplace_back (annotation.type );
1022+ java_annotations .emplace_back (annotation.type );
10231023 std::vector<java_annotationt::valuet> &values =
1024- annotations .back ().get_values ();
1024+ java_annotations .back ().get_values ();
10251025 std::transform (
10261026 annotation.element_value_pairs .begin (),
10271027 annotation.element_value_pairs .end (),
10281028 std::back_inserter (values),
1029- [](const decltype (annotation.element_value_pairs )::value_type &value)
1030- {
1029+ [](const decltype (annotation.element_value_pairs )::value_type &value) {
10311030 return java_annotationt::valuet (value.element_name , value.value );
10321031 });
10331032 }
You can’t perform that action at this time.
0 commit comments