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

Commit 97cdfc04 authored by William Escande's avatar William Escande Committed by Gerrit Code Review
Browse files

Merge "Explictly delete default constructor"

parents e4e780c7 9930096c
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