diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-20 16:57:52 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-20 16:57:52 +0100 |
commit | 03ee8f797ddf8ba4701e394998a28aa7ee5c7ffb (patch) | |
tree | 14583b1f345c851e14cf3b95d4a0a7f3fe8ae7b0 /lv2/input_lv2.h | |
parent | 5f2350251bddaa3be7fe2fbc510cf253e7fc971f (diff) |
Fix uninitialised warning.
Diffstat (limited to 'lv2/input_lv2.h')
-rw-r--r-- | lv2/input_lv2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2/input_lv2.h b/lv2/input_lv2.h index 32e2fd8..3e3ef31 100644 --- a/lv2/input_lv2.h +++ b/lv2/input_lv2.h @@ -47,10 +47,10 @@ public: event_t *run(size_t pos, size_t len, size_t *nevents); void post(); - LV2_Atom_Sequence *eventPort; + LV2_Atom_Sequence *eventPort{nullptr}; private: - Instruments *instruments; + Instruments *instruments{nullptr}; }; #endif/*__DRUMGIZMO_INPUT_LV2_H__*/ |