<html>
<head>
<base href="https://bugs.documentfoundation.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Replace boost::noncopyable with plain C++11 deleted copy ctors"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=94306#c8">Comment # 8</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Replace boost::noncopyable with plain C++11 deleted copy ctors"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=94306">bug 94306</a>
from <span class="vcard"><a class="email" href="mailto:danlrobertson89@gmail.com" title="Daniel L Robertson <danlrobertson89@gmail.com>"> <span class="fn">Daniel L Robertson</span></a>
</span></b>
<pre>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 :-)</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are on the CC list for the bug.</li>
</ul>
</body>
</html>