You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2013/09/26 23:41:37 UTC

git commit: * THRIFT-2195: added default argument for enhanced compatbility

Updated Branches:
  refs/heads/master 016404080 -> d430bbdc8


* THRIFT-2195: added default argument for enhanced compatbility

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/d430bbdc
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/d430bbdc
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/d430bbdc

Branch: refs/heads/master
Commit: d430bbdc8148558cb30a2db4931dc3e19405a578
Parents: 0164040
Author: Jens Geyer <je...@apache.org>
Authored: Thu Sep 26 23:37:54 2013 +0200
Committer: Jens Geyer <je...@apache.org>
Committed: Thu Sep 26 23:37:54 2013 +0200

----------------------------------------------------------------------
 lib/delphi/src/Thrift.Protocol.pas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/d430bbdc/lib/delphi/src/Thrift.Protocol.pas
----------------------------------------------------------------------
diff --git a/lib/delphi/src/Thrift.Protocol.pas b/lib/delphi/src/Thrift.Protocol.pas
index 5618d6f..7ae8e34 100644
--- a/lib/delphi/src/Thrift.Protocol.pas
+++ b/lib/delphi/src/Thrift.Protocol.pas
@@ -530,7 +530,7 @@ type
 
   IProcessor = interface
     ['{7BAE92A5-46DA-4F13-B6EA-0EABE233EE5F}']
-    function Process( const iprot :IProtocol; const oprot: IProtocol; const events : IProcessorEvents): Boolean;
+    function Process( const iprot :IProtocol; const oprot: IProtocol; const events : IProcessorEvents = nil): Boolean;
   end;