Fix warning re S24 not trivially copyable by removing copy constructor.
[rtaudio-cdist.git] / 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; }