mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-22 07:09:38 +02:00
fixed missing inline
This commit is contained in:
parent
026bb6faa7
commit
efd8b125a2
@ -916,7 +916,7 @@ Type
|
|||||||
Function ToBoolean: Boolean; inline;
|
Function ToBoolean: Boolean; inline;
|
||||||
Function ToDouble: Double; inline;
|
Function ToDouble: Double; inline;
|
||||||
Function ToExtended: Extended; inline;
|
Function ToExtended: Extended; inline;
|
||||||
Function ToBinString:string;
|
Function ToBinString:string; inline;
|
||||||
Function ToHexString(const AMinDigits: Integer): string; overload; inline;
|
Function ToHexString(const AMinDigits: Integer): string; overload; inline;
|
||||||
Function ToHexString: string; overload; inline;
|
Function ToHexString: string; overload; inline;
|
||||||
Function ToString: string; overload; inline;
|
Function ToString: string; overload; inline;
|
||||||
@ -947,7 +947,7 @@ Type
|
|||||||
Function SetBit(const Index: TShortIntBitIndex): Shortint; inline;
|
Function SetBit(const Index: TShortIntBitIndex): Shortint; inline;
|
||||||
Function ClearBit(const Index: TShortIntBitIndex): Shortint; inline;
|
Function ClearBit(const Index: TShortIntBitIndex): Shortint; inline;
|
||||||
Function ToggleBit(const Index: TShortIntBitIndex): Shortint; inline;
|
Function ToggleBit(const Index: TShortIntBitIndex): Shortint; inline;
|
||||||
Function TestBit(const Index:TShortIntBitIndex):Boolean;
|
Function TestBit(const Index:TShortIntBitIndex):Boolean; inline;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TSmallIntHelper = Type Helper for SmallInt
|
TSmallIntHelper = Type Helper for SmallInt
|
||||||
@ -971,7 +971,7 @@ Type
|
|||||||
Function SetBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
Function SetBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
||||||
Function ClearBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
Function ClearBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
||||||
Function ToggleBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
Function ToggleBit(const Index: TSmallIntBitIndex) : Smallint; inline;
|
||||||
Function TestBit(const Index:TSmallIntBitIndex):Boolean;
|
Function TestBit(const Index:TSmallIntBitIndex):Boolean; inline;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TWordHelper = Type Helper for Word
|
TWordHelper = Type Helper for Word
|
||||||
|
Loading…
Reference in New Issue
Block a user