Skip to content

Commit

Permalink
fix: please clang
Browse files Browse the repository at this point in the history
  • Loading branch information
DNKpp committed Oct 3, 2023
1 parent 0b7dbe3 commit 0ffc66f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/graph/Defines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ constexpr auto convert_test_expectations(const Range& range, Transform transform
return results;
}

constexpr auto toCommonBasicNode = [](const sg::concepts::basic_node auto& node)
constexpr auto toCommonBasicNode = []<sg::concepts::basic_node Node>(const Node& node)
{
return sg::CommonBasicNode{sg::node::vertex(node)};
return sg::CommonBasicNode<sg::node::vertex_t<Node>>{sg::node::vertex(node)};
};

constexpr auto toDepthBasicNode = []<typename Node>(const sg::DepthNodeDecorator<Node>& node)
Expand Down

0 comments on commit 0ffc66f

Please sign in to comment.