https://bugs.documentfoundation.org/show_bug.cgi?id=94306

--- Comment #8 from Daniel L Robertson <danlrobertso...@gmail.com> ---
I just took a look at it, and if I'm correct this is due to the fact that there
is no default constructor in IBluetoothSocket. boost::noncopyable defines a
default constructor. As a result, you might try something like the following.

struct IBluetoothSocket
{
protected: // I personally would use protected but someone else may disagree
    IBluetoothSocket() = default;
public:
    // everything else
};

No worries, but typically if you have questions regarding errors it is a good
idea to post them  :-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to