[doc] callback return value in \return field
[rtaudio.git] / RtAudio.h
index 32dcb6975c883ec516afd99aa7c99800f8f76294..8afc04dcea99037eeb3d67ada80294c5d2b5c71a 100644 (file)
--- a/RtAudio.h
+++ b/RtAudio.h
@@ -193,6 +193,7 @@ static const RtAudioStreamStatus RTAUDIO_OUTPUT_UNDERFLOW = 0x2;  // The output
    \param userData A pointer to optional data provided by the client
           when opening the stream (default = NULL).
 
+   \return
    To continue normal stream operation, the RtAudioCallback function
    should return a value of zero.  To stop the stream and drain the
    output buffer, the function should return a value of one.  To abort
@@ -690,7 +691,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; }