Fixed GNU compilation

This commit is contained in:
oparviai 2014-01-07 19:41:23 +00:00
parent 4da3b1eaf9
commit 33638a2243
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ using namespace std;
static const char _helloText[] = static const char _helloText[] =
"\n" "\n"
" SoundStretch v%s - Written by Olli Parviainen 2001 - 2012\n" " SoundStretch v%s - Written by Olli Parviainen 2001 - 2014\n"
"==================================================================\n" "==================================================================\n"
"author e-mail: <oparviai" "author e-mail: <oparviai"
"@" "@"

View File

@ -90,7 +90,7 @@ public:
/// samples get removed from src, and produced amount added to dest /// samples get removed from src, and produced amount added to dest
/// Note : The amount of outputted samples is by value of 'filter length' /// Note : The amount of outputted samples is by value of 'filter length'
/// smaller than the amount of input samples. /// smaller than the amount of input samples.
uint AAFilter::evaluate(FIFOSampleBuffer &dest, uint evaluate(FIFOSampleBuffer &dest,
FIFOSampleBuffer &src) const; FIFOSampleBuffer &src) const;
}; };