[Bind] Remove Type.IndirectionLevel

Property wasn't used.
This commit is contained in:
Fraser Waters 2015-07-29 14:07:14 +01:00
parent 52ea9d68ed
commit 0ffd3c595b

View file

@ -182,19 +182,7 @@ namespace Bind.Structures
// Set to true if parameter is an enum.
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
public bool CLSCompliant