Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7893621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:10:46+00:00 2026-06-03T07:10:46+00:00

Im not really sure why the following code gives me the following error in

  • 0

Im not really sure why the following code gives me the following error in GCC 4.6.3

no match for ‘operator=’ in ‘boost::spirit::_a = boost::phoenix::function::operator()(const A0&) const [with A0 = boost::phoenix::actor >, F = make_line_impl, typename boost::phoenix::as_composite, F, A0>::type = boost::phoenix::composite, boost::fusion::vector, boost::spirit::argument<0>, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_, boost::fusion::void_> >]((* & boost::spirit::_1))’

Is it even possible to assign the result of a lazy function object to a qi placeholder?

#include <string>
#include <boost/spirit/include/phoenix_function.hpp>
#include <boost/spirit/include/qi.hpp>

using std::string;

using boost::spirit::qi::grammar;
using boost::spirit::qi::rule;
using boost::spirit::qi::space_type;
using boost::spirit::qi::skip_flag;
using boost::spirit::unused_type;

namespace qi = boost::spirit::qi;
namespace phx = boost::phoenix;

struct make_line_impl
{
  int* _context;
  make_line_impl(int* context)
  {
    _context = context;
  }

  template <typename Sig>
  struct result;

  template <typename This, typename Arg>
  struct result<This(Arg const &)>
  {
    typedef int* type;
  };
  template <typename Arg>
  int* operator()(Arg const & content)
  {
    return new int(5);
  }
};


template<typename Iterator>
struct MyGrammar : grammar<Iterator, unused_type, space_type>
{
  rule<Iterator, unused_type, space_type> start;
  rule<Iterator, int*(), space_type> label;
  rule<Iterator, string*(), qi::locals<int*>, space_type> line;

  MyGrammar() : MyGrammar::base_type(start)
  {
    make_line_impl mlei(new int(5));
    phx::function<make_line_impl> make_line(mlei);

    start = *(line);

    line = label[qi::_a = make_line(qi::_1)];
  }
};


int main(int argc, char **argv) {

  string contents;

  qi::phrase_parse(contents.begin(), contents.end(), MyGrammar<string::iterator>(), space_type(), skip_flag::postskip);
    return 0;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T07:10:47+00:00Added an answer on June 3, 2026 at 7:10 am

    I have fixed some spots in the code to make it compile:

    • I rewrote the nested ::result<>::type logic according to the documentation of BOOST_RESULT_OF.

      Note if you compile in c++11 mode, you’re probably better off defining

       #define BOOST_RESULT_OF_USE_DECLTYPE
      

      in which case you don’t have to bother with the nested result type template.

    • The operator(...) method needed to be const

    Resulting code:

    #include <string>
    #include <boost/spirit/include/phoenix.hpp>
    #include <boost/spirit/include/qi.hpp>
    
    using std::string;
    
    using boost::spirit::qi::grammar;
    using boost::spirit::qi::rule;
    using boost::spirit::qi::space_type;
    using boost::spirit::qi::skip_flag;
    using boost::spirit::unused_type;
    
    namespace qi = boost::spirit::qi;
    namespace phx = boost::phoenix;
    
    struct make_line_impl
    {
      int* _context;
      make_line_impl(int* context)
      {
        _context = context;
      }
    
      template <typename Arg> struct result { typedef int* type; };
    
      template <typename Arg>
      int* operator()(Arg const & content) const
      {
        return new int(5);
      }
    };
    
    
    template<typename Iterator>
    struct MyGrammar : grammar<Iterator, unused_type, space_type>
    {
      rule<Iterator, unused_type, space_type> start;
      rule<Iterator, int*(), space_type> label;
      rule<Iterator, string*(), qi::locals<int*>, space_type> line;
    
      MyGrammar() : MyGrammar::base_type(start)
      {
        make_line_impl mlei(new int(5));
        phx::function<make_line_impl> make_line(mlei);
    
        start = *(line);
    
        line = label[qi::_a = make_line(qi::_1)];
      }
    };
    
    
    int main(int argc, char **argv) {
    
      string contents;
    
      qi::phrase_parse(contents.begin(), contents.end(), MyGrammar<string::iterator>(), space_type(), skip_flag::postskip);
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting this error, not really sure why. Please help, this is urgent. UPDATE
I keep getting this error, and I'm not really sure why this isn't working
Not really sure how to phrase this other than by example.. Given... DATABASES =
i'm not really sure what i'm doing wrong. I am working on a 6
So i'm not really sure why this is happening but I'm running through some
I'm not really sure how to google this one . I would like to
I'm not really sure how to title this question but basically I have an
I'm not really sure how scoped_session works, other than it seems to be a
I'm not really sure if there is a single problem here or I have
I am not really sure what type of headers these highlighted values are, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.