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 2002/05/08 20:55:01 UTC

cvs commit: xml-xerces/c/src/xercesc/util/regx Op.hpp

peiyongz    02/05/08 11:55:01

  Modified:    c/src/xercesc/util/regx Op.hpp
  Log:
  Bug#8899: Missing implementation of Op::Op(const Op&) causes
                    Intel C++ Win32 link to fail  -- patch from Curt Arnold
  
  Revision  Changes    Path
  1.3       +3 -3      xml-xerces/c/src/xercesc/util/regx/Op.hpp
  
  Index: Op.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/regx/Op.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Op.hpp	18 Mar 2002 19:29:53 -0000	1.2
  +++ Op.hpp	8 May 2002 18:55:01 -0000	1.3
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: Op.hpp,v 1.2 2002/03/18 19:29:53 knoaman Exp $
  + * $Id: Op.hpp,v 1.3 2002/05/08 18:55:01 peiyongz Exp $
    */
   
   #if !defined(OP_HPP)
  @@ -139,8 +139,8 @@
       // -----------------------------------------------------------------------
       //  Unimplemented constructors and operators
       // -----------------------------------------------------------------------
  -    Op(const Op&);
  -    void operator=(const Op&);
  +    Op(const Op&) {ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);};
  +    void operator=(const Op&) {ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);};
   
       // -----------------------------------------------------------------------
       //  Private data members
  
  
  

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