removed template type from foreign_node_completer::complete method

This commit is contained in:
2025-12-13 10:56:25 +01:00
parent 9ba58eb05b
commit 348f3a16d0
3 changed files with 7 additions and 7 deletions
@@ -371,7 +371,7 @@ void relation_completer<Type>::attach_relation_node(const std::string &name, con
return;
}
foreign_node_completer<Type>::template complete<relation_value_type>(result.value());
foreign_node_completer<relation_value_type>::complete(result.value());
const auto local_endpoint = std::make_shared<relation_endpoint>(name, relation_type::HasMany, node);
const auto join_endpoint = std::make_shared<relation_endpoint>(join_column, relation_type::BelongsTo, nodes_.top());