Skip to content

Commit 38e9d25

Browse files
authored
fix fmt deprecation
fix error: ‘join’ is not a member of ‘fmt’
1 parent 2002fb7 commit 38e9d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

moveit_setup_assistant/moveit_setup_framework/src/urdf_config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void URDFConfig::loadFromPath(const std::filesystem::path& urdf_file_path, const
8585
{
8686
urdf_path_ = urdf_file_path;
8787
xacro_args_vec_ = xacro_args;
88-
xacro_args_ = fmt::format("{}", fmt::join(xacro_args_vec_, " "));
88+
xacro_args_ = fmt::format("{}", rcpputils::join(xacro_args_vec_, " "));
8989
setPackageName();
9090
load();
9191
}

0 commit comments

Comments
 (0)