From bb5f805ee29e4d0044ee86c9ba044e8e5385550b Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Tue, 6 Nov 2018 10:01:17 +0100 Subject: [PATCH] Fix up LoopData inplace init --- src/Loop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Loop.h b/src/Loop.h index 9cb2711..274d3c8 100644 --- a/src/Loop.h +++ b/src/Loop.h @@ -61,7 +61,7 @@ private: Loop() = delete; Loop *init() { - new (us_loop_ext((us_loop *) this)) LoopData(); + new (us_loop_ext((us_loop *) this)) LoopData; return this; }