Re: help with - error: no matching function for call...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You need a copy constructor for outerException. This should fix your bug...

class outerException
{
public:
    outerException(Base* oParent, innerException& oInner);
    outerException(outerException const& oSource);
    ~outerException();
};

HTH,
--Eljay


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux