Fixed "Declaration shadows a field" warning

This commit is contained in:
Stephen Hill 2015-12-23 12:16:31 -05:00 committed by Christophe Riccio
parent c9400562ec
commit 4bb352b628

View File

@ -52,12 +52,12 @@ namespace detail
i(0) i(0)
{} {}
GLM_FUNC_QUALIFIER uif32(float f) : GLM_FUNC_QUALIFIER uif32(float f_) :
f(f) f(f_)
{} {}
GLM_FUNC_QUALIFIER uif32(uint32 i) : GLM_FUNC_QUALIFIER uif32(uint32 i_) :
i(i) i(i_)
{} {}
float f; float f;