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 di...@apache.org on 2006/02/13 16:30:55 UTC

svn commit: r377394 - /webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp

Author: dicka
Date: Mon Feb 13 07:30:51 2006
New Revision: 377394

URL: http://svn.apache.org/viewcvs?rev=377394&view=rev
Log:
Resolve compilation warning in MathOps service.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp?rev=377394&r1=377393&r2=377394&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MathOps.cpp Mon Feb 13 07:30:51 2006
@@ -44,7 +44,7 @@
          {
              pObjFault->varString = "Division by zero exception";
              pObjFault->varInt = 1;
-             pObjFault->varFloat = 10.52;
+             pObjFault->varFloat = (float) 10.52;
              throw pObjFault;
          }
      }