Subject: Re: [Boost-bugs] [Boost C++ Libraries] #10025: boost/variant/detail/initializer.hpp does not supress C4503 warnings
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2016-01-07 12:54:42
#10025: boost/variant/detail/initializer.hpp does not supress C4503 warnings
---------------------------+-----------------------
Reporter: 8th.realm@⦠| Owner: apolukhin
Type: Bugs | Status: assigned
Milestone: Boost 1.58.0 | Component: variant
Version: Boost 1.55.0 | Severity: Cosmetic
Resolution: | Keywords:
---------------------------+-----------------------
Comment (by john.tytgat@â¦):
FYI, we had exactly the same issue and after investigation it turned out
this was because of some legacy hack in our codebase to suppress a C4244
warning when including boost/thread/mutex.hpp (which seems to longer be
relevant with VS2013/boost 1.59):
{{{
#pragma warning(push)
#pragma warning(disable: 4244)
#include <boost/thread/mutex.hpp>
#pragma warning(pop)
}}}
This made that the C4503 warning disable in boost/config.hpp got undone so
that made we got those warnings back when include/using other boost
components. Maybe the original ticket submitter had the same issue ?
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/10025#comment:3> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:19 UTC