summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@gmail.com>2019-01-24 15:05:52 +0100
committerStephen Sinclair <radarsat1@gmail.com>2019-01-24 15:05:54 +0100
commitb787f3630bdb83087fb31eed2d815f0ea6370a8c (patch)
tree2038904d8cd8df8626a8c258f02c10fcb0004cfe
parentbd3db58ad06f739fecbf7afe7a5c5df5a366c700 (diff)
Fix warning re S24 not trivially copyable by removing copy constructor.
-rw-r--r--RtAudio.h1
1 files changed, 0 insertions, 1 deletions
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; }