Merge pull request #5 from arielelkin/explicit-cast-in-Stk.h-frames

explicitly cast return value in Stk::frames() to match return type
This commit is contained in:
garyscavone
2014-02-28 13:00:25 -05:00

View File

@@ -376,7 +376,7 @@ public:
unsigned int channels( void ) const { return nChannels_; };
//! Return the number of sample frames represented by the data.
unsigned int frames( void ) const { return nFrames_; };
unsigned int frames( void ) const { return (unsigned int)nFrames_; };
//! Set the sample rate associated with the StkFrames data.
/*!