[
https://issues.apache.org/jira/browse/AXISCPP-1012?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
nadir amra closed AXISCPP-1012.
-------------------------------
Resolution: Fixed
Fix Version/s: (was: 1.6 Final)
current (nightly)
> 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: current (nightly)
>
>
> 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.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]