explicitly cast return value in frames() to match return type

This commit is contained in:
Ariel Elkin
2014-02-27 01:08:45 +00:00
parent 1874c0efa9
commit 00f822e00c

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.
/*!