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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to