[Bug 94306] Replace boost::noncopyable with plain C++11 deleted copy ctors
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Sat Sep 26 08:09:32 PDT 2015
https://bugs.documentfoundation.org/show_bug.cgi?id=94306
--- Comment #7 from Umang Jain <mailumangjain at gmail.com> ---
ok regarding the sd/ module, I am not able to make changes in:
sd/source/ui/remotecontrol/IBluetoothSocket.hxx : (line) struct
IBluetoothSocket : private boost::noncopyable
If I change with :
class NonCopyable {
public:
NonCopyable(const NonCopyable&) = delete;
const NonCopyable& operator=(const NonCopyable&) = delete;
};
It does not builds successfully and throws errors. If I allow boost
templates(only for this file), It build successfully. What should I do ?
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/libreoffice/attachments/20150926/b0fa452a/attachment.html>
More information about the LibreOffice
mailing list