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 sa...@apache.org on 2004/12/27 08:50:15 UTC

cvs commit: ws-axis/c/src/common TypeMapping.cpp

samisa      2004/12/26 23:50:15

  Modified:    c/src/common TypeMapping.cpp
  Log:
  Fixed the bug due to replacing type string with std::string by mistake.
  
  Revision  Changes    Path
  1.21      +1 -1      ws-axis/c/src/common/TypeMapping.cpp
  
  Index: TypeMapping.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/TypeMapping.cpp,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- TypeMapping.cpp	23 Dec 2004 09:14:26 -0000	1.20
  +++ TypeMapping.cpp	27 Dec 2004 07:50:15 -0000	1.21
  @@ -63,7 +63,7 @@
           m_sTypeMap[std::string ("float")] = XSD_FLOAT;
           m_sTypeMap[std::string ("double")] = XSD_DOUBLE;
           m_sTypeMap[std::string ("decimal")] = XSD_DECIMAL;
  -        m_sTypeMap[std::string ("std::string")] = XSD_STRING;
  +        m_sTypeMap[std::string ("string")] = XSD_STRING;
           m_sTypeMap[std::string ("base64Binary")] = XSD_BASE64BINARY;
           m_sTypeMap[std::string ("hexBinary")] = XSD_HEXBINARY;
           m_sTypeMap[std::string ("anyURI")] = XSD_ANYURI;