From 667a4aafb5c5a595effbda978678b9ee559498d9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 24 Apr 2016 14:16:15 +0200 Subject: [PATCH] fix mismatched delete/delete[] --- libs/ardour/ardour/delayline.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/ardour/delayline.h b/libs/ardour/ardour/delayline.h index 56a6de0c63..9dfe5628d3 100644 --- a/libs/ardour/ardour/delayline.h +++ b/libs/ardour/ardour/delayline.h @@ -58,8 +58,8 @@ private: framecnt_t _delay, _pending_delay; framecnt_t _bsiz, _pending_bsiz; frameoffset_t _roff, _woff; - boost::shared_ptr _buf; - boost::shared_ptr _pending_buf; + boost::shared_ptr _buf; + boost::shared_ptr _pending_buf; boost::shared_ptr _midi_buf; bool _pending_flush; };