diff --git a/src/cmdline.cpp b/src/cmdline.cpp index 34b191f..59cc980 100644 --- a/src/cmdline.cpp +++ b/src/cmdline.cpp @@ -196,24 +196,24 @@ namespace boost { namespace program_options { namespace detail { if (m_additional_parser) style_parsers.push_back( - bind(&cmdline::handle_additional_parser, this, _1)); + boost::bind(&cmdline::handle_additional_parser, this, _1)); if (m_style & allow_long) style_parsers.push_back( - bind(&cmdline::parse_long_option, this, _1)); + boost::bind(&cmdline::parse_long_option, this, _1)); if ((m_style & allow_long_disguise)) style_parsers.push_back( - bind(&cmdline::parse_disguised_long_option, this, _1)); + boost::bind(&cmdline::parse_disguised_long_option, this, _1)); if ((m_style & allow_short) && (m_style & allow_dash_for_short)) style_parsers.push_back( - bind(&cmdline::parse_short_option, this, _1)); + boost::bind(&cmdline::parse_short_option, this, _1)); if ((m_style & allow_short) && (m_style & allow_slash_for_short)) - style_parsers.push_back(bind(&cmdline::parse_dos_option, this, _1)); + style_parsers.push_back(boost::bind(&cmdline::parse_dos_option, this, _1)); - style_parsers.push_back(bind(&cmdline::parse_terminator, this, _1)); + style_parsers.push_back(boost::bind(&cmdline::parse_terminator, this, _1)); vector