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 di...@apache.org on 2005/03/23 11:19:07 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/client/cpp NestedArraysClient.cpp

dicka       2005/03/23 02:19:07

  Modified:    c/tests/auto_build/testcases/client/cpp
                        NestedArraysClient.cpp
  Log:
  Provide support for arrays of nillable simple types.  Modifying testcases affected by changes.
  
  PR: AXISCPP-575
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.3       +1 -1      ws-axis/c/tests/auto_build/testcases/client/cpp/NestedArraysClient.cpp
  
  Index: NestedArraysClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/NestedArraysClient.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NestedArraysClient.cpp	22 Mar 2005 19:19:04 -0000	1.2
  +++ NestedArraysClient.cpp	23 Mar 2005 10:19:07 -0000	1.3
  @@ -82,7 +82,7 @@
   
   		xsd__int_Array response = ws->sendNestedArrays(parentArray);
   
  -		cout << response.m_Array[0] << " " << response.m_Array[1] << endl;
  +		cout << *(response.m_Array[0]) << " " << *(response.m_Array[1]) << endl;
   
   		delete ws;
   	}