Fix up LoopData inplace init

This commit is contained in:
Alex Hultman
2018-11-06 10:01:17 +01:00
parent 6231aceaef
commit bb5f805ee2
+1 -1
View File
@@ -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;
}