This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
rtaudio
mirror of
https://github.com/falkTX/rtaudio
Watch
1
Star
0
Fork
0
Code
Releases
27
Activity
Browse Source
Fix warning re S24 not trivially copyable by removing copy constructor.
tags/5.1.0
Stephen Sinclair
6 years ago
parent
bd3db58ad0
commit
b787f3630b
1 changed files
with
0 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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; }
Write
Preview
Loading…
Cancel
Save