Repository: thrift Updated Branches: refs/heads/master 6b61601cc -> f0e63317c
THRIFT-3017 order of map key/value types incorrect for one CTOR Client: Delphi Patch: Jens Geyer Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/96eff17e Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/96eff17e Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/96eff17e Branch: refs/heads/master Commit: 96eff17e50a8421bfa48072b2e2aa229b3169eb5 Parents: 6b61601 Author: Jens Geyer <[email protected]> Authored: Mon Mar 2 01:30:05 2015 +0100 Committer: Jens Geyer <[email protected]> Committed: Mon Mar 2 02:12:45 2015 +0100 ---------------------------------------------------------------------- lib/delphi/src/Thrift.Protocol.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/96eff17e/lib/delphi/src/Thrift.Protocol.pas ---------------------------------------------------------------------- diff --git a/lib/delphi/src/Thrift.Protocol.pas b/lib/delphi/src/Thrift.Protocol.pas index 6cff09c..3df3574 100644 --- a/lib/delphi/src/Thrift.Protocol.pas +++ b/lib/delphi/src/Thrift.Protocol.pas @@ -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;
