[Bug 284378] www/webkit2-gtk: interactions with C++ dependencies built with clang/libc++ causes WebProcess crash

From: <bugzilla-noreply_at_freebsd.org>
Date: Thu, 30 Jan 2025 05:06:02 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=284378

--- Comment #31 from shamaz.mazum@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 the assignee for the bug.