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

Variant构造时不能自动调用一些转换的bug #1

Open
lucklove opened this issue Aug 23, 2015 · 0 comments
Open

Variant构造时不能自动调用一些转换的bug #1

lucklove opened this issue Aug 23, 2015 · 0 comments

Comments

@lucklove
Copy link
Contributor

比如,给Variant传入const类型不能自动转换成非const类型,传入const char*不能自动转换成string, 例子如下

        const int i = 0;
        Variant<std::string, int> v1{i};                        //报错
        Variant<std::string, int> v2{"hello"};                  //报错
        Variant<std::string, int> v3{int(i)};                   //正确
        Variant<std::string, int> v4{std::string("world")};     //正确
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