Deprecated warnings when using boost.spirit

I am trying to write parsers with boost.spirit.qi, but when I compile, I get the following deprecated warnings:

In file included from /usr/include/boost/iostreams/detail/is_dereferenceable.hpp:12:0 ... #pragma message: NOTE: Use of this header (bool_trait_def.hpp) is deprecated #pragma message: NOTE: Use of this header (template_arity_spec.hpp) is deprecated 

Am I using the wrong parsers or something old? How can I get rid of these warnings?

EDIT: /usr/include/boost/iostreams/detail/is_dereferenceable.hpp somehow included /usr/include/boost/spirit/include/qi.hpp I am using Boost version 1.61

+5
source share

All Articles