From c19b019217811dcebed6c9b6e7af2d492379f8be Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 24 Jun 2021 06:22:43 -0400 Subject: [PATCH] path: remove unused function --- include/villas/path.h | 2 -- lib/path.cpp | 5 ----- 2 files changed, 7 deletions(-) diff --git a/include/villas/path.h b/include/villas/path.h index 44bae3356..c6ad27405 100644 --- a/include/villas/path.h +++ b/include/villas/path.h @@ -146,8 +146,6 @@ const char * path_name(struct vpath *p); /** Get a list of signals which is emitted by the path. */ struct vlist * path_output_signals(struct vpath *n); -struct vlist * path_signals(struct vpath *p); - /** Reverse a path */ int path_reverse(struct vpath *p, struct vpath *r); diff --git a/lib/path.cpp b/lib/path.cpp index f796ddabe..9702404a7 100644 --- a/lib/path.cpp +++ b/lib/path.cpp @@ -812,11 +812,6 @@ bool path_is_reversed(const struct vpath *p) return p->reverse; } -struct vlist * path_signals(struct vpath *p) -{ - return &p->signals; -} - struct vlist * path_output_signals(struct vpath *p) { #ifdef WITH_HOOKS