Core/ParameterList: Fix warning of shadowing variable

This commit is contained in:
Lynix 2016-11-15 15:13:12 +01:00
parent 46f2c18e20
commit c1630cdbff
1 changed files with 3 additions and 3 deletions

View File

@ -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)
{
}