mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-07 13:40:41 +00:00
Merge pull request #537 from UnknownShadow200/develop
Fix a nameof() using wrong variable in GeneratedVariableIdentifier
This commit is contained in:
commit
923e051989
|
@ -40,7 +40,7 @@ namespace OpenTK.Rewrite
|
||||||
|
|
||||||
if (definition == null)
|
if (definition == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentException("The definition argument cannot be null.", nameof(body));
|
throw new ArgumentException("The definition argument cannot be null.", nameof(definition));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(name))
|
if (string.IsNullOrEmpty(name))
|
||||||
|
|
Loading…
Reference in a new issue