From d297eae83b22f8a061303be34e9b3e46a7f4ce62 Mon Sep 17 00:00:00 2001 From: Chris Loer Date: Mon, 5 Jun 2017 13:45:03 -0700 Subject: [PATCH] GCC empty parameter pack workaround I'm not sure why my changes exposed this problem in the first place... --- src/mbgl/renderer/paint_property_binder.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mbgl/renderer/paint_property_binder.hpp b/src/mbgl/renderer/paint_property_binder.hpp index 8dc5bd7f721..c51ab66a771 100644 --- a/src/mbgl/renderer/paint_property_binder.hpp +++ b/src/mbgl/renderer/paint_property_binder.hpp @@ -324,6 +324,7 @@ class PaintPropertyBinders> { } UniformValues uniformValues(float currentZoom) const { + (void)currentZoom; // Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56958 return UniformValues { uniformValue(currentZoom)... };