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