From: Carl Hetherington Date: Thu, 26 May 2022 07:40:33 +0000 (+0200) Subject: Cleanup: remove unused constructor. X-Git-Tag: v2.16.14~50 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=a00c3110ecbe76e7b456136f2a4b177dfc37daf5 Cleanup: remove unused constructor. --- diff --git a/src/lib/content_audio.h b/src/lib/content_audio.h index 0d16799d7..89a908b68 100644 --- a/src/lib/content_audio.h +++ b/src/lib/content_audio.h @@ -34,11 +34,6 @@ class ContentAudio { public: - ContentAudio () - : audio (new AudioBuffers (0, 0)) - , frame (0) - {} - ContentAudio (std::shared_ptr a, Frame f) : audio (a) , frame (f)