mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 08:54:35 +00:00
Fixed warning from #123 comments
This commit is contained in:
parent
ab552c3acd
commit
09a8d5a621
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user