Core/ParameterList: Fix warning of shadowing variable
This commit is contained in:
parent
46f2c18e20
commit
c1630cdbff
|
|
@ -60,10 +60,10 @@ namespace Nz
|
|||
{
|
||||
struct UserdataValue
|
||||
{
|
||||
UserdataValue(Destructor Destructor, void* value) :
|
||||
UserdataValue(Destructor func, void* ud) :
|
||||
counter(1),
|
||||
destructor(Destructor),
|
||||
ptr(value)
|
||||
destructor(func),
|
||||
ptr(ud)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue