Git Product home page Git Product logo

Comments (6)

eduardodoria avatar eduardodoria commented on September 26, 2024

In my case, removing -1 in this part of code:

template <class T, class F, class... Ts, class ExclusionType>
struct member_function_arity_excluding<T, F, std::tuple<Ts...>, ExclusionType, std::enable_if_t<is_proxy_member_function_v<T, F>>>
    : std::integral_constant<std::size_t, (0 + ... + (std::is_same_v<std::decay_t<Ts>, ExclusionType> ? 0 : 1)) - 1>
{
};

To:

template <class T, class F, class... Ts, class ExclusionType>
struct member_function_arity_excluding<T, F, std::tuple<Ts...>, ExclusionType, std::enable_if_t<is_proxy_member_function_v<T, F>>>
    : std::integral_constant<std::size_t, (0 + ... + (std::is_same_v<std::decay_t<Ts>, ExclusionType> ? 0 : 1))>
{
};

It works!
But can break another part of code that I have not tested yet.

from luabridge3.

kunitoki avatar kunitoki commented on September 26, 2024

Is this a class function or global function ?

from luabridge3.

kunitoki avatar kunitoki commented on September 26, 2024

Ah i see now the issue, will apply a fix

from luabridge3.

kunitoki avatar kunitoki commented on September 26, 2024

Should be fixed in 36c8f88

Could you verify it's ok on your end as well ? Added a unit test in the commit, would be nice if you can check if this is equal to your use case.

from luabridge3.

kunitoki avatar kunitoki commented on September 26, 2024

Btw now you can do:

luabridge::getGlobalNamespace(L)
    ...
    .addFunction("__mul",
        luabridge::overload<const Vector3&>(&Vector3::operator*),
        luabridge::overload<float>(&Vector3::operator*))
    ...
    .endClass();

for even simpler overload resolution

from luabridge3.

eduardodoria avatar eduardodoria commented on September 26, 2024

It is working now.
Thanks!

from luabridge3.

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.