mirror of
https://github.com/g-truc/glm.git
synced 2024-11-26 10:14: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();
|
return std::string();
|
||||||
|
|
||||||
va_start(list, msg);
|
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);
|
vsprintf_s(text, STRING_BUFFER, msg, list);
|
||||||
#else//
|
#else//
|
||||||
vsprintf(text, msg, list);
|
vsprintf(text, msg, list);
|
||||||
|
Loading…
Reference in New Issue
Block a user