Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When registering a class that privately inherits from std::vector, it causes a compilation error. #1477

Closed
wzhengsen opened this issue Apr 12, 2023 · 0 comments

Comments

@wzhengsen
Copy link

IDE: visual studio 2022
Version: sol2 3.3.0

#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>
#include <vector>

class number_storage : private std::vector<int> { };
class number_storage1 : public number_storage { };

namespace sol {
    template <>
    struct is_container<number_storage1> : std::false_type { };
    template <>
    struct is_container<number_storage> : std::false_type { };
}

int main(int, char*[]) {
    sol::state lua;
    lua.new_usertype<number_storage>("number_storage");
    lua.new_usertype<number_storage1>("number_storage1");//compilation error at here.
    return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant