Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9ab726c authored by William Escande's avatar William Escande Committed by Automerger Merge Worker
Browse files

Merge "Explictly delete default constructor" am: 97cdfc04

parents 7b1ae5c3 97cdfc04
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ class IPCHandlerBinder : public IPCHandler {
 public:
  IPCHandlerBinder(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);

  IPCHandlerBinder() = delete;
  IPCHandlerBinder(const IPCHandlerBinder&) = delete;
  IPCHandlerBinder& operator=(const IPCHandlerBinder&) = delete;

+1 −2
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ class IPCHandlerDBus : public IPCHandler {
 public:
  IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);

  IPCHandlerDBus() = delete;
  IPCHandlerDBus(const IPCHandlerDBus&) = delete;
  IPCHandlerDBus& operator=(const IPCHandlerDBus&) = delete;

@@ -43,8 +44,6 @@ class IPCHandlerDBus : public IPCHandler {

 private:
  base::Thread* dbus_thread_;

  IPCHandlerDBus() = default;
};

}  // namespace ipc