|
@@ -467,17 +467,17 @@ namespace analysis {
|
|
|
else if (type == "robotics::v3::mvc::multipart_value" || type == "v3::mvc::multipart_value" || type == "mvc::multipart_value") {
|
|
|
ss << "\t\t\targument->argument_type_ = " << type_map["Multipart"] << ";" << std::endl;
|
|
|
ss << "\t\t\targument->from_storage_type_ = robotics::v3::mvc::from_storage_type::BODY;" << std::endl;
|
|
|
- ss << "\t\t\targument->parameter_name_ = "";" << std::endl;
|
|
|
+ ss << "\t\t\targument->parameter_name_ = \"\";" << std::endl;
|
|
|
}
|
|
|
else if (type.size() > 12 && type.substr(0, 11) == "std::vector") {
|
|
|
ss << "\t\t\targument->argument_type_ = " << type_map["VecJson"] << ";" << std::endl;
|
|
|
ss << "\t\t\targument->from_storage_type_ = robotics::v3::mvc::from_storage_type::BODY;" << std::endl;
|
|
|
- ss << "\t\t\targument->parameter_name_ = "";" << std::endl;
|
|
|
+ ss << "\t\t\targument->parameter_name_ = \"\";" << std::endl;
|
|
|
}
|
|
|
else {
|
|
|
ss << "\t\t\targument->argument_type_ = " << type_map["Json"] << ";" << std::endl;
|
|
|
ss << "\t\t\targument->from_storage_type_ = robotics::v3::mvc::from_storage_type::BODY;" << std::endl;
|
|
|
- ss << "\t\t\targument->parameter_name_ = "";" << std::endl;
|
|
|
+ ss << "\t\t\targument->parameter_name_ = \"\";" << std::endl;
|
|
|
}
|
|
|
ss << "\t\t\taction->arguments.push_back(argument);" << std::endl;
|
|
|
ss << "\t\t}" << std::endl;
|