You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "nadir amra (JIRA)" <ax...@ws.apache.org> on 2006/11/10 23:10:41 UTC

[jira] Closed: (AXISCPP-1007) Correct assignment operator

     [ http://issues.apache.org/jira/browse/AXISCPP-1007?page=all ]

nadir amra closed AXISCPP-1007.
-------------------------------

    Resolution: Fixed

> Correct assignment operator
> ---------------------------
>
>                 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 assignment operators 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);
> Forgot to mention that this is due in part to Haiping Zhao many changes posted on the mailing list, which I am going through slowly.  Doing the easy stuff first.
> Thanks Haiping!

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org