From c298839886a0fc2350d2f9b5cf7e49cb1e714add Mon Sep 17 00:00:00 2001 From: Stephen Sinclair Date: Tue, 1 Oct 2013 02:14:49 +0200 Subject: [PATCH] Extra bracket causes compilation failure in debug mode. --- include/TapDelay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/TapDelay.h b/include/TapDelay.h index 4aabb0b..1ce6010 100644 --- a/include/TapDelay.h +++ b/include/TapDelay.h @@ -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 ); }