Skip to content

Commit e28e16b

Browse files
committed
fixed clang compilation error
1 parent d1634d1 commit e28e16b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

include/hgl/hypergraph.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ class hypergraph final {
2121
using traits_type = HypergraphTraits;
2222
using directional_tag = typename traits_type::directional_tag;
2323
using implementation_tag = typename traits_type::implementation_tag;
24-
using implementation_type = typename implementation_tag::implementation_type<directional_tag>;
24+
using implementation_type =
25+
typename implementation_tag::template implementation_type<directional_tag>;
2526

2627
using vertex_type = typename traits_type::vertex_type;
2728
using vertex_properties_type = typename traits_type::vertex_properties_type;

0 commit comments

Comments
 (0)