mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-05 10:28:24 +00:00
Sort tokens within an enum
This allows us to keep a specific ordering regardless of the token order in the input file (much friendlier for source control!)
This commit is contained in:
parent
1b937b48f8
commit
6f4530f8a8
|
@ -39,7 +39,7 @@ namespace Bind.Structures
|
||||||
set { _type = value; }
|
set { _type = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
Dictionary<string, Constant> _constant_collection = new Dictionary<string, Constant>();
|
SortedDictionary<string, Constant> _constant_collection = new SortedDictionary<string, Constant>();
|
||||||
|
|
||||||
public IDictionary<string, Constant> ConstantCollection
|
public IDictionary<string, Constant> ConstantCollection
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue