[Libreoffice-commits] online.git: kit/Delta.hpp
Andras Timar
andras.timar at collabora.com
Thu Nov 23 14:02:04 UTC 2017
kit/Delta.hpp | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit f3ab71e4b3b4b7316e9fc9be838e41fe15c26512
Author: Andras Timar <andras.timar at collabora.com>
Date: Thu Nov 23 15:01:25 2017 +0100
fix error: unused parameter ‘bufferHeight’ [-Werror=unused-parameter]
Change-Id: I6a1f64796d3304e12f0159bed03b5f95a760ce6a
diff --git a/kit/Delta.hpp b/kit/Delta.hpp
index e1890370..1cc3afba 100644
--- a/kit/Delta.hpp
+++ b/kit/Delta.hpp
@@ -154,6 +154,8 @@ class DeltaGenerator {
assert (startX + width <= (size_t)bufferWidth);
assert (startY + height <= (size_t)bufferHeight);
+ (void)bufferHeight;
+
LOG_TRC("Converting pixel data to delta data of size "
<< (width * height * 4) << " width " << width
<< " height " << height);
More information about the Libreoffice-commits
mailing list