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