From 95247c7d0b94b3844298f9a61872afe54fdb0a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 25 May 2015 23:41:11 +0200 Subject: [PATCH] Removed deprecated Context::Flag::Robustness enum value. Use Context::Flag::RobustAccess instead. --- src/Magnum/Context.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/Magnum/Context.h b/src/Magnum/Context.h index 6caf35694..5e9349c93 100644 --- a/src/Magnum/Context.h +++ b/src/Magnum/Context.h @@ -125,15 +125,7 @@ class MAGNUM_EXPORT Context { * @todo In ES available under glGetIntegerv(CONTEXT_ROBUST_ACCESS_EXT), * how to make it compatible? */ - RobustAccess = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB, - - #ifdef MAGNUM_BUILD_DEPRECATED - /** - * @copybrief Flag::RobustAccess - * @deprecated Use @ref Flag::RobustAccess instead. - */ - Robustness = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB - #endif + RobustAccess = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB #endif };