Skip to content

Commit 69b7c56

Browse files
committed
fix constness
1 parent 1939751 commit 69b7c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

urdf_parser/src/model.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ModelInterfaceSharedPtr parseURDFFile(const std::string &path)
5959
return urdf::parseURDF( xml_str );
6060
}
6161

62-
bool assignMaterial(const VisualSharedPtr& visual, const ModelInterfaceSharedPtr& model, const char* link_name)
62+
bool assignMaterial(const VisualSharedPtr& visual, ModelInterfaceSharedPtr& model, const char* link_name)
6363
{
6464
if (visual->material_name.empty())
6565
return true;

0 commit comments

Comments
 (0)