mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-19 07:48:02 +00:00
[Bind] Remove Type.IndirectionLevel
Property wasn't used.
This commit is contained in:
parent
52ea9d68ed
commit
0ffd3c595b
|
@ -182,19 +182,7 @@ namespace Bind.Structures
|
||||||
|
|
||||||
// Set to true if parameter is an enum.
|
// Set to true if parameter is an enum.
|
||||||
public bool IsEnum { get; set; }
|
public bool IsEnum { get; set; }
|
||||||
|
|
||||||
#region IndirectionLevel
|
|
||||||
|
|
||||||
// Gets the the level of indirection for this type. For example,
|
|
||||||
// type 'foo' has indirection level = 0, while 'ref foo*[]' has
|
|
||||||
// an indirection level of 3.
|
|
||||||
public int IndirectionLevel
|
|
||||||
{
|
|
||||||
get { return Pointer + Array + (Reference ? 1 : 0); }
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region public bool CLSCompliant
|
#region public bool CLSCompliant
|
||||||
|
|
||||||
public bool CLSCompliant
|
public bool CLSCompliant
|
||||||
|
|
Loading…
Reference in a new issue