You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in #219, linking to /boost/serialization//boost_serialization/<warnings>off doesn't propagate <warnings>off to Regex, which breaks when warnings-as-errors is on.
That's because build/Jamfile contains
project : requirements
# default to all warnings on:
<warnings>all
: common-requirements <library>$(boost_dependencies)
: requirements <library>$(boost_dependencies_private)
;
which overrides the inherited <warnings>off with <warnings>all.
The comment says "default to all warnings on", but since it's a requirement, it's not a default and is always applied.
It should be put in default-build instead.
The text was updated successfully, but these errors were encountered:
As mentioned in #219, linking to
/boost/serialization//boost_serialization/<warnings>off
doesn't propagate<warnings>off
to Regex, which breaks whenwarnings-as-errors
ison
.That's because build/Jamfile contains
which overrides the inherited
<warnings>off
with<warnings>all
.The comment says "default to all warnings on", but since it's a requirement, it's not a default and is always applied.
It should be put in
default-build
instead.The text was updated successfully, but these errors were encountered: