Fix warning re S24 not trivially copyable by removing copy constructor.
authorStephen Sinclair <radarsat1@gmail.com>
Thu, 24 Jan 2019 14:05:52 +0000 (15:05 +0100)
committerStephen Sinclair <radarsat1@gmail.com>
Thu, 24 Jan 2019 14:05:54 +0000 (15:05 +0100)
RtAudio.h

index 32dcb6975c883ec516afd99aa7c99800f8f76294..4bb75545a29dcd7a72602f3f634ff03618c97654 100644 (file)
--- 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; }