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 su...@apache.org on 2003/07/18 07:29:10 UTC

cvs commit: xml-axis/c/src/common BasicTypeSerializer.h BasicTypeSerializer.cpp

susantha    2003/07/17 22:29:10

  Modified:    c/src/common BasicTypeSerializer.h BasicTypeSerializer.cpp
  Log:
  no message
  
  Revision  Changes    Path
  1.5       +1 -1      xml-axis/c/src/common/BasicTypeSerializer.h
  
  Index: BasicTypeSerializer.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/BasicTypeSerializer.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BasicTypeSerializer.h	18 Jul 2003 05:18:19 -0000	1.4
  +++ BasicTypeSerializer.h	18 Jul 2003 05:29:10 -0000	1.5
  @@ -79,7 +79,7 @@
   class BasicTypeSerializer
   {
   public:
  -	static string& GetEntityReferenced(string& str);
  +	static string& GetEntityReferenced(const string& str);
   	static string m_AuxStr;
   	static string& serialize(const string& sName, string& sValue, XSDTYPE type=XSD_STRING);
   	static string& serialize(const string& sName, float fValue);
  
  
  
  1.4       +1 -1      xml-axis/c/src/common/BasicTypeSerializer.cpp
  
  Index: BasicTypeSerializer.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/common/BasicTypeSerializer.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BasicTypeSerializer.cpp	18 Jul 2003 05:18:19 -0000	1.3
  +++ BasicTypeSerializer.cpp	18 Jul 2003 05:29:10 -0000	1.4
  @@ -140,7 +140,7 @@
   	}
   }
   
  -string& BasicTypeSerializer::GetEntityReferenced(string &str)
  +string& BasicTypeSerializer::GetEntityReferenced(const string &str)
   {
   	return str;
   }