Browse Source

Fix warning re S24 not trivially copyable by removing copy constructor.

tags/5.1.0
Stephen Sinclair 6 years ago
parent
commit
b787f3630b
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      RtAudio.h

+ 0
- 1
RtAudio.h View File

@@ -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; }


Loading…
Cancel
Save