mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
Fixed "Declaration shadows a field" warning
This commit is contained in:
parent
78f686b4be
commit
22467f00f8
@ -52,12 +52,12 @@ namespace detail
|
||||
i(0)
|
||||
{}
|
||||
|
||||
GLM_FUNC_QUALIFIER uif32(float f) :
|
||||
f(f)
|
||||
GLM_FUNC_QUALIFIER uif32(float f_) :
|
||||
f(f_)
|
||||
{}
|
||||
|
||||
GLM_FUNC_QUALIFIER uif32(uint32 i) :
|
||||
i(i)
|
||||
GLM_FUNC_QUALIFIER uif32(uint32 i_) :
|
||||
i(i_)
|
||||
{}
|
||||
|
||||
float f;
|
||||
|
Loading…
Reference in New Issue
Block a user