<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#c7">Comment # 7</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:mailumangjain@gmail.com" title="Umang Jain <mailumangjain@gmail.com>"> <span class="fn">Umang Jain</span></a>
</span></b>
        <pre>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 ?</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>