From 31f407358a4e7714e35b4ae256f0a0ab353cb79a Mon Sep 17 00:00:00 2001 From: Evgeniy Andreev Date: Fri, 26 Jul 2013 01:57:24 +0400 Subject: [PATCH] fast (slow) fix of unused variable warning --- src/shogun/lib/CircularBuffer.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shogun/lib/CircularBuffer.cpp b/src/shogun/lib/CircularBuffer.cpp index 9bab63b94b0..4865e6d9fed 100644 --- a/src/shogun/lib/CircularBuffer.cpp +++ b/src/shogun/lib/CircularBuffer.cpp @@ -180,7 +180,6 @@ bool CCircularBuffer::has_next() if (m_bytes_count==0) return false; - int32_t tail_length=m_end_pos-m_buffer.vector; int32_t head_length=m_buffer_end-m_begin_pos; // determine position of finder pointer in memory block