mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 06:10:59 +00:00
Merge categories for redefined functions
Now that we support function overloads, it is safe to ignore functions that are defined multiple times. We just merge their Category properties if they are not identical.
This commit is contained in:
parent
346547331a
commit
35c0edfa42
|
@ -302,15 +302,20 @@ namespace Bind.Structures
|
|||
else
|
||||
{
|
||||
var list = Delegates[d.Name];
|
||||
if (!list.Contains(d))
|
||||
var index = list.IndexOf(d);
|
||||
if (index < 0)
|
||||
{
|
||||
// Function not defined - add it!
|
||||
list.Add(d);
|
||||
}
|
||||
else
|
||||
{
|
||||
Trace.WriteLine(String.Format(
|
||||
"Spec error: function {0} redefined, ignoring second definition.",
|
||||
d.Name));
|
||||
// Function redefined with identical parameters:
|
||||
// merge the categories and ignore the second definition.
|
||||
if (!list[index].Category.Contains(d.Category))
|
||||
{
|
||||
list[index].Category += "|" + d.Category;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue