Correct copy constructors
-------------------------

                 Key: AXISCPP-1007
                 URL: http://issues.apache.org/jira/browse/AXISCPP-1007
             Project: Axis-C++
          Issue Type: Improvement
          Components: Basic Architecture
    Affects Versions:  1.6 Beta
            Reporter: nadir amra
         Assigned To: nadir amra
            Priority: Minor
             Fix For:  1.6 Beta


The copy constructors for  SoapFaultException and OtherFaultException causes 
warning messages to be issued on some platforms, causes an addition copy to be 
made for the object to be copied, and has the virtual keyword specified which 
is unneccessary.  So the methods have been changed from:

virtual SoapFaultException& operator=(SoapFaultException other);
virtual OtherFaultException& operator=(OtherFaultException other);

TO:

SoapFaultException& operator=(const SoapFaultException& other);
OtherFaultException& operator=(const OtherFaultException& other);


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to