[ 
https://issues.apache.org/jira/browse/AXISCPP-1012?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12463319
 ] 

Wayne Johnson commented on AXISCPP-1012:
----------------------------------------

This code is also in stub.hpp.

> Call.hpp overides VC warning (disable : 4251) (includes patch)
> --------------------------------------------------------------
>
>                 Key: AXISCPP-1012
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-1012
>             Project: Axis-C++
>          Issue Type: Bug
>          Components: Client - Stub
>    Affects Versions:  1.6 Beta
>         Environment: Compiling with VC 7.1
>            Reporter: Wayne Johnson
>            Priority: Critical
>             Fix For:  1.6 Final
>
>
> Call.hpp disables VC warning 4251, then resets it to the default state.  This 
> was causing our code that calls the stub to generate 4251 warnings.
> Better to push the warning state, disable the warning state for the required 
> calls, then pop the state:
> #ifdef WIN32
>   #pragma warning (push)
>   #pragma warning (disable : 4251)
> #endif
>       list<void*> m_handlerProperties;
>       list<ISoapAttachment*> m_attachments;
> #ifdef WIN32
>   #pragma warning (pop)
> #endif

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://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