mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
Disallowed [Inline] on properties
This commit is contained in:
parent
ace51cb7be
commit
a781f29c31
5 changed files with 9 additions and 17 deletions
|
@ -51,27 +51,27 @@ namespace System
|
|||
return Span<T>(array);
|
||||
}
|
||||
|
||||
[Inline]
|
||||
public int Length
|
||||
{
|
||||
[Inline]
|
||||
get
|
||||
{
|
||||
return mLength;
|
||||
}
|
||||
}
|
||||
|
||||
[Inline]
|
||||
public T* Ptr
|
||||
{
|
||||
[Inline]
|
||||
get
|
||||
{
|
||||
return mPtr;
|
||||
}
|
||||
}
|
||||
|
||||
[Inline]
|
||||
public T* EndPtr
|
||||
{
|
||||
[Inline]
|
||||
get
|
||||
{
|
||||
return mPtr + mLength;
|
||||
|
@ -281,9 +281,9 @@ namespace System
|
|||
}
|
||||
|
||||
|
||||
[Inline]
|
||||
public T* Ptr
|
||||
{
|
||||
[Inline]
|
||||
get
|
||||
{
|
||||
return mPtr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue