From 0819628fea8ae7498b4c9130dec8b3e367cba6e5 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Fri, 8 May 2015 15:28:43 +0300 Subject: Fix Linux GCC Debug build Compiler was complaining about shadowed variable after macro expansion. --- include/mbgl/platform/gl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/mbgl/platform/gl.hpp b/include/mbgl/platform/gl.hpp index 5c10f16105..78f5ba0874 100644 --- a/include/mbgl/platform/gl.hpp +++ b/include/mbgl/platform/gl.hpp @@ -39,7 +39,7 @@ struct Error : ::std::runtime_error { void checkError(const char *cmd, const char *file, int line); #if defined(DEBUG) -#define MBGL_CHECK_ERROR(cmd) ([&]() { struct _ { inline ~_() { ::mbgl::gl::checkError(#cmd, __FILE__, __LINE__); } } _; return cmd; }()) +#define MBGL_CHECK_ERROR(cmd) ([&]() { struct __MBGL_C_E { inline ~__MBGL_C_E() { ::mbgl::gl::checkError(#cmd, __FILE__, __LINE__); } } __MBGL_C_E; return cmd; }()) #else #define MBGL_CHECK_ERROR(cmd) (cmd) #endif -- cgit v1.2.1