mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
THRIFT-3017 order of map key/value types incorrect for one CTOR
Client: Delphi Patch: Jens Geyer
This commit is contained in:
parent
6b61601cc1
commit
96eff17e50
@ -114,7 +114,7 @@ type
|
||||
function GetCount: Integer;
|
||||
procedure SetCount( Value: Integer);
|
||||
public
|
||||
constructor Create( AValueType: TType; AKeyType: TType; ACount: Integer); overload;
|
||||
constructor Create( AKeyType, AValueType: TType; ACount: Integer); overload;
|
||||
constructor Create; overload;
|
||||
end;
|
||||
|
||||
@ -733,7 +733,7 @@ end;
|
||||
|
||||
{ TMapImpl }
|
||||
|
||||
constructor TMapImpl.Create(AValueType, AKeyType: TType; ACount: Integer);
|
||||
constructor TMapImpl.Create( AKeyType, AValueType: TType; ACount: Integer);
|
||||
begin
|
||||
inherited Create;
|
||||
FValueType := AValueType;
|
||||
|
Loading…
Reference in New Issue
Block a user