You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2003/09/19 18:04:01 UTC

cvs commit: xml-xerces/c/src/xercesc/internal XSerializeEngine.cpp

peiyongz    2003/09/19 09:04:01

  Modified:    c/src/xercesc/internal XSerializeEngine.cpp
  Log:
  Resolve compilation error on 64bit platform (can convert (void* const) to int).
  
  Revision  Changes    Path
  1.2       +6 -3      xml-xerces/c/src/xercesc/internal/XSerializeEngine.cpp
  
  Index: XSerializeEngine.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XSerializeEngine.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSerializeEngine.cpp	18 Sep 2003 18:31:24 -0000	1.1
  +++ XSerializeEngine.cpp	19 Sep 2003 16:04:01 -0000	1.2
  @@ -57,6 +57,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.2  2003/09/19 16:04:01  peiyongz
  + * Resolve compilation error on 64bit platform (can convert (void* const) to int).
  + *
    * Revision 1.1  2003/09/18 18:31:24  peiyongz
    * OSU: Object Serialization Utilities
    *
  @@ -813,7 +816,7 @@
   {
   
       TEST_THROW_ARG1( (ptr == 0)
  -                   , (int)ptr
  +                   , 0
                      , XMLExcepts::XSer_Inv_Null_Pointer
                      )
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org