From 67f095ca90f985ff08c47320bbbcccd7caf186f0 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 6 Apr 2019 14:20:21 +0200 Subject: [PATCH] hooks: remove useless assertion --- include/villas/hook.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/villas/hook.hpp b/include/villas/hook.hpp index 9ee1707d0..dcf78702b 100644 --- a/include/villas/hook.hpp +++ b/include/villas/hook.hpp @@ -116,8 +116,6 @@ public: /** Called whenever a sample is processed. */ virtual int process(sample *smp) { - assert(state == STATE_STARTED); - return HOOK_OK; };