From 0c262dc0bd1109343253acae447d694cddddd1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 28 Nov 2011 22:17:39 +0100 Subject: [PATCH] Removed DISABLE_COPY() macro, as it is already in Corrade. --- src/Magnum.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/Magnum.h b/src/Magnum.h index eadeff920..fe6466cec 100644 --- a/src/Magnum.h +++ b/src/Magnum.h @@ -41,17 +41,6 @@ typedef Math::Matrix3 Matrix3; /** @brief 4x4 floating-point matrix */ typedef Math::Matrix4 Matrix4; -/** - * @brief Disable copying of given class - * @param class Class name - * - * Makes copy constructor and assignment operator private, so the class cannot - * be copied. Should be placed at the beginning of class definition. - */ -#define DISABLE_COPY(class) \ - class(const class&); \ - class& operator=(const class&); - } -#endif \ No newline at end of file +#endif