Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri Rusin committed Feb 1, 2024
1 parent 37b15c4 commit c2b43e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ioh/common/factory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ namespace ioh::common
static FactoryID get_id(const std::vector<int> &)
{
const auto meta = T(1, 1).meta_data();
return {meta.problem_id, meta.name + "IdGetter<true>"};
auto resulting_name = "meta.name=" + meta.name + " | meta.problem_id=" + std::to_string(meta.problem_id) + " | class_name<T>()=" + class_name<T>();
return {meta.problem_id, resulting_name};
}
};

Expand Down

0 comments on commit c2b43e8

Please sign in to comment.