From 8d89e9fa4514b7e8867fcf99a696cb088b765024 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 20 May 2010 12:03:06 +0100 Subject: [PATCH] Fixed _YES / _NO --- glm/core/_detail.hpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/glm/core/_detail.hpp b/glm/core/_detail.hpp index 88a835fd..b902dc44 100644 --- a/glm/core/_detail.hpp +++ b/glm/core/_detail.hpp @@ -13,10 +13,6 @@ #include "../setup.hpp" #include -//#define valType typename genType::value_type -//#define valType_cref typename genType::value_type const & -//#define genType_cref typename genType const & - namespace glm{ namespace detail{ @@ -226,8 +222,8 @@ namespace detail{ { enum is_bool_enum { - YES = 0, - NO = 1 + _YES = 0, + _NO = 1 }; };