From 09a8d5a621856acb056bfcbbf902ad3353f6bbb6 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 1 Jul 2012 11:32:55 +0100 Subject: [PATCH] Fixed warning from #123 comments --- glm/gtx/string_cast.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/gtx/string_cast.inl b/glm/gtx/string_cast.inl index cdc284ad..d0e8f43f 100644 --- a/glm/gtx/string_cast.inl +++ b/glm/gtx/string_cast.inl @@ -23,8 +23,8 @@ namespace detail return std::string(); va_start(list, msg); -// Ticket #123 -#if((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER_VC >= GLM_COMPILER_VC2005)) + +#if((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC2005)) vsprintf_s(text, STRING_BUFFER, msg, list); #else// vsprintf(text, msg, list);