You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ja...@apache.org on 2005/11/21 11:00:42 UTC

svn commit: r345885 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp

Author: jamejose
Date: Mon Nov 21 02:00:25 2005
New Revision: 345885

URL: http://svn.apache.org/viewcvs?rev=345885&view=rev
Log:
changed return type of main to 'int'

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp?rev=345885&r1=345884&r2=345885&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp Mon Nov 21 02:00:25 2005
@@ -16,7 +16,7 @@
 #include <iostream>
 #include "TestServicePortType.hpp"
 
-void main( int argc, char * argv[])
+int main( int argc, char * argv[])
 {
 	bool	bSuccess = false;
 	int		iRetryIterationCount = 3;
@@ -97,4 +97,5 @@
 	{
 		cout << "---------------------- TEST FAILED -----------------------------" << endl;
 	}
+	return 0;
 }