On Tue, Sep 30, 2014 at 6:47 PM, Eric Fiselier <[email protected]> wrote:
>
> http://reviews.llvm.org/D4467

Incidentally, and sorry if this is a dumb question, but what's the
rationale for libc++ allowing either

    using A = std::array<double,3>;
    A a;
    std::tuple<A> t;
    t = a;

or

    using A = std::array<double,3>;
    A a;
    std::tuple<double,double,double> t;
    t = a;


to compile in the first place?  I don't see any wording in N3797
[tuple.assign] that would permit *either* of those.

–Arthur

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to