diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2019-01-24 15:05:52 +0100 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2019-01-24 15:05:54 +0100 |
| commit | b787f3630bdb83087fb31eed2d815f0ea6370a8c (patch) | |
| tree | 2038904d8cd8df8626a8c258f02c10fcb0004cfe | |
| parent | bd3db58ad06f739fecbf7afe7a5c5df5a366c700 (diff) | |
Fix warning re S24 not trivially copyable by removing copy constructor.
| -rw-r--r-- | RtAudio.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; } |
