From 157d967dd52bfd9fc030c2e2f5f1faae21e724f9 Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Wed, 14 Dec 2022 16:30:03 +0100 Subject: [PATCH] initialized member id with 0 Signed-off-by: Pascal Bauer --- common/include/villas/graph/vertex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/villas/graph/vertex.hpp b/common/include/villas/graph/vertex.hpp index 2b7256dbf..54e6a332d 100644 --- a/common/include/villas/graph/vertex.hpp +++ b/common/include/villas/graph/vertex.hpp @@ -35,7 +35,7 @@ public: } private: - Identifier id; + Identifier id = 0; // HACK: how to resolve this circular type dependency? std::list edges; };