variant icon indicating copy to clipboard operation
variant copied to clipboard

Compiling with msvc failed but with gcc succeeded.

Open VirgilMa opened this issue 1 year ago • 0 comments

code is here.

class Val : public mpark::variant<bool, int, double, std::string, void*> {
public:
    using mpark::variant<bool, int, double, std::string, void*>::variant;
};

int main() {
    Val val;
    val = true;
    return 0;
}

Thank you so much for your time.

VirgilMa avatar Nov 04 '24 07:11 VirgilMa