Skip to content

Commit f852b2d

Browse files
authored
try to fix compiler errors (#30)
1 parent 5da38a1 commit f852b2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graph/graph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ namespace htps {
918918
if constexpr (has_static_from_json<T>::value) {
919919
map.insert(key, (T::from_json(value)));
920920
} else {
921-
map.insert(key, (value.get<T>()));
921+
map.insert(key, (value.template get<T>()));
922922
}
923923

924924
}

0 commit comments

Comments
 (0)