You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ja...@apache.org on 2005/11/21 10:59:22 UTC

svn commit: r345884 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeWithNillableSimpleElementClient.cpp

Author: jamejose
Date: Mon Nov 21 01:59:07 2005
New Revision: 345884

URL: http://svn.apache.org/viewcvs?rev=345884&view=rev
Log:
Changed return type of main from 'void' to 'int'

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeWithNillableSimpleElementClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeWithNillableSimpleElementClient.cpp?rev=345884&r1=345883&r2=345884&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeWithNillableSimpleElementClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeWithNillableSimpleElementClient.cpp Mon Nov 21 01:59:07 2005
@@ -16,7 +16,7 @@
 #include <iostream>
 #include "ComplexTypeWithNillableSimpleElement.hpp"
 
-void main( int argc, char* argv[])
+int main( int argc, char* argv[])
 {
 	char *	pszEndpoint = "http://localhost:9080/ComplexTypeWithNillableSimpleElement";
 
@@ -65,5 +65,5 @@
 
     cout << "---------------------- TEST COMPLETE -----------------------------" << endl;
 
-	return;
+	return 0;
 }