Extra bracket causes compilation failure in debug mode.

This commit is contained in:
Stephen Sinclair
2013-10-01 02:14:49 +02:00
parent 57e3fe7dae
commit c298839886

View File

@@ -115,7 +115,7 @@ class TapDelay : public Filter
inline StkFloat TapDelay :: lastOut( unsigned int tap ) const
{
#if defined(_STK_DEBUG_)
if ( tap >= lastFrame_.size() ) ) {
if ( tap >= lastFrame_.size() ) {
oStream_ << "TapDelay::lastOut(): tap argument and number of taps are incompatible!";
handleError( StkError::FUNCTION_ARGUMENT );
}