From b787f3630bdb83087fb31eed2d815f0ea6370a8c Mon Sep 17 00:00:00 2001 From: Stephen Sinclair Date: Thu, 24 Jan 2019 15:05:52 +0100 Subject: [PATCH] Fix warning re S24 not trivially copyable by removing copy constructor. --- RtAudio.h | 1 - 1 file changed, 1 deletion(-) diff --git a/RtAudio.h b/RtAudio.h index 32dcb69..4bb7554 100644 --- a/RtAudio.h +++ b/RtAudio.h @@ -690,7 +690,6 @@ class S24 { return *this; } - S24( const S24& v ) { *this = v; } S24( const double& d ) { *this = (int) d; } S24( const float& f ) { *this = (int) f; } S24( const signed short& s ) { *this = (int) s; } -- 2.30.2