From 12287708d510e82fe1c64919a0f17122f689e306 Mon Sep 17 00:00:00 2001 From: Simon Sorg Date: Tue, 15 Apr 2025 21:21:04 +0100 Subject: [PATCH] try to fix compiler errors --- src/graph/graph.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/graph.h b/src/graph/graph.h index 43c3c1e..816f608 100644 --- a/src/graph/graph.h +++ b/src/graph/graph.h @@ -918,7 +918,7 @@ namespace htps { if constexpr (has_static_from_json::value) { map.insert(key, (T::from_json(value))); } else { - map.insert(key, (value.get())); + map.insert(key, (value.template get())); } }