From e99664a5ca1a0da0a443b080c9727b87b2058178 Mon Sep 17 00:00:00 2001 From: Youngbok Shin Date: Mon, 30 Jul 2018 14:41:23 +0900 Subject: [PATCH] lottie/vector: remove an unused variable warning message Change-Id: I1ac0b9c3ec314ac01da8d3be3d11a1b21ef9938a --- src/vector/vdebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/vdebug.cpp b/src/vector/vdebug.cpp index bc2fc3b..47db2eb 100644 --- a/src/vector/vdebug.cpp +++ b/src/vector/vdebug.cpp @@ -534,7 +534,7 @@ public: if (read_buffer == nullptr) return false; - if (bool success = read_buffer->try_pop(logline, m_read_index)) { + if (read_buffer->try_pop(logline, m_read_index)) { m_read_index++; if (m_read_index == Buffer::size) { m_read_index = 0; -- 2.34.1