Max De Marzi

Results 41 issues of Max De Marzi

I was trying to overload a function this way: lua.set_function("NodesGet", sol::overload( [this](std::vector ids) { return this->NodesGetViaLua(ids); }, [this](std::vector links) { return this->NodesGetByLinksViaLua(links); } )); However it doesn't matter if I...

Ubuntu, gcc11, using luajit. Getting error after upgrading... I don't quite understand what the error is even telling me. Breaks on import no code even runs: ``` include/sol/object_base.hpp:71:118: error: ‘sol::basic_reference’...

[godbolt example](https://godbolt.org/z/rq3E6oaac) This is related to #1306 which works for values, but if the value is a vector then it defaults to the first overload it finds again.

I think a version of bug https://github.com/ThePhD/sol2/issues/155 has come back: I have a bunch of overloaded functions that look like this and this works: ``` lua.set_function("LinksGetLinks", sol::overload( ... [this](std::vector links,...

Can we double check https://github.com/maxdemarzi/neography/blob/master/lib/neography/rest/node_paths.rb for a potential leak? I'm getting reports of R14s on Heroku and the issue may be lots of "paths" being generated.

To-Do: Add cypher helper methods from: https://github.com/jexp/app-net-graph/blob/master/lib/cypher.rb So we can do: https://github.com/jexp/app-net-graph/blob/master/lib/appnet.rb#L25

Kind of like a stored procedure or prepared statement, define functions with variables and then just call them so they are already jitted.

-funroll-loops https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105781