Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Rauch <Rauch.Christian@gmx.de>2021-06-15 23:03:33 +0300
committerChristian Rauch <Rauch.Christian@gmx.de>2021-06-22 22:00:40 +0300
commitc6e6a9046e1b918adf7f5d172e84acf7768c09d9 (patch)
tree9e06426d5433fdf7c1ab21d6744858b52787ebf6 /intern/ghost/intern
parentee8b284d117385168739ee9f6f459e077af2ec8c (diff)
GHOST/EGL: ignore unused variables
Diffstat (limited to 'intern/ghost/intern')
-rw-r--r--intern/ghost/intern/GHOST_ContextEGL.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_ContextEGL.cpp b/intern/ghost/intern/GHOST_ContextEGL.cpp
index bac7057d953..6ec79aad045 100644
--- a/intern/ghost/intern/GHOST_ContextEGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextEGL.cpp
@@ -149,6 +149,9 @@ static bool egl_chk(bool result, const char *file = NULL, int line = 0, const ch
static_cast<unsigned int>(error),
code ? code : "<Unknown>",
msg ? msg : "<Unknown>");
+ (void)(file);
+ (void)(line);
+ (void)(text);
#endif
}