From 7d708c55bb30448fc1b62b9cbb2ec58c4c4d5f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 24 Feb 2024 16:34:59 +0100 Subject: [PATCH] SceneGraph: CORRADE_GCC46_COMPATIBILITY? Wow. --- src/Magnum/SceneGraph/AbstractObject.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Magnum/SceneGraph/AbstractObject.h b/src/Magnum/SceneGraph/AbstractObject.h index 06b19f590..68d01d092 100644 --- a/src/Magnum/SceneGraph/AbstractObject.h +++ b/src/Magnum/SceneGraph/AbstractObject.h @@ -311,11 +311,7 @@ template using AbstractBasicObject3D = AbstractObject<3, T>; @see @ref AbstractObject2D */ -#ifndef CORRADE_GCC46_COMPATIBILITY typedef AbstractBasicObject3D AbstractObject3D; -#else -typedef AbstractObject<3, Float> AbstractObject3D; -#endif #if defined(CORRADE_TARGET_WINDOWS) && !(defined(CORRADE_TARGET_MINGW) && !defined(CORRADE_TARGET_CLANG)) extern template class MAGNUM_SCENEGRAPH_EXPORT AbstractObject<2, Float>;