Giter Site home page Giter Site logo

Comments (5)

lyskov avatar lyskov commented on June 16, 2024 1

Thank you for reporting this @zwimer ! I just pushed 7b47e78 which should fix this.

from binder.

zwimer avatar zwimer commented on June 16, 2024

I'll add this bug to the known bugs PR: #229

from binder.

hogabrie avatar hogabrie commented on June 16, 2024

Hi @lyskov,

7b47e78 causes a new issue for me.

If I add the following to test/T07.class.hpp:

#include <ostream>
namespace operators{
  struct Operators
  {
    friend std::ostream & operator<<(std::ostream & s, const Operators & a) { return s << "Hi"; }
  };
}

, test compilation fails:

/home/ghottiger/git/binder/build/test/T07_class.cpp: In lambda function:
/home/ghottiger/git/binder/build/test/T07_class.cpp:104:105: error: ‘operator<<’ is not a member of ‘operators’; did you mean ‘std::operator<<’?
  104 | ors::Operators const &o) -> std::string { std::ostringstream s; operators::operator<<(s, o); return s.str(); } );
      |                 

Even though this is perfectly ok C++ code. E.g. run this minimal example:

#include <iostream>

namespace operators {
  struct Operators
  {
    friend std::ostream & operator<<(std::ostream & s, const Operators & a) { return s << a.greetings(); }
    std::string greetings() const { return "Hello"; }
  };
}

int main() {
  operators::Operators s;
  std::cout << s << std::endl;
  return 0;
}

from binder.

lyskov avatar lyskov commented on June 16, 2024

@hogabrie ah, - i had encounter this or very similar issue before, it became particularly obvious when class and friend function is templated (issue is not specific to operator<<). Solution that i used is to separate declaration of function from it definition. It is a bit verbose but so far this is the only solution that seems to work. Please try following example, it have worked for me:

namespace aaaa {
struct T
{
    friend std::ostream & operator<<(std::ostream & s, T const &);
};

inline std::ostream & operator<<(std::ostream & s, T const &) { return s << "hi..."; }
}

from binder.

hogabrie avatar hogabrie commented on June 16, 2024

Thank you @lyskov for the quick support and the amazing binder project. For now I reverted the commit in our fork. When I find the time I will adapt our huge templated library with this proposal to get the bindings working with the latest binder version.

from binder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.