https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=284378

--- Comment #31 from shamaz.ma...@gmail.com ---
(In reply to Charlie Li from comment #26)


You can simply use

template<class _T1, class _T2>
struct mypair {
    _T1 x;
    _T2 y;

    mypair() : x(), y() { }
    mypair(const _T1& __a, const _T2& __b) : x(__a), y(__b) { }
};

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to