Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,7 @@ class IPCHandlerBinder : public IPCHandler { ...@@ -26,6 +26,7 @@ class IPCHandlerBinder : public IPCHandler {
public: public:
IPCHandlerBinder(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate); IPCHandlerBinder(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
IPCHandlerBinder() = delete;
IPCHandlerBinder(const IPCHandlerBinder&) = delete; IPCHandlerBinder(const IPCHandlerBinder&) = delete;
IPCHandlerBinder& operator=(const IPCHandlerBinder&) = delete; IPCHandlerBinder& operator=(const IPCHandlerBinder&) = delete;
......
...@@ -30,6 +30,7 @@ class IPCHandlerDBus : public IPCHandler { ...@@ -30,6 +30,7 @@ class IPCHandlerDBus : public IPCHandler {
public: public:
IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate); IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
IPCHandlerDBus() = delete;
IPCHandlerDBus(const IPCHandlerDBus&) = delete; IPCHandlerDBus(const IPCHandlerDBus&) = delete;
IPCHandlerDBus& operator=(const IPCHandlerDBus&) = delete; IPCHandlerDBus& operator=(const IPCHandlerDBus&) = delete;
...@@ -43,8 +44,6 @@ class IPCHandlerDBus : public IPCHandler { ...@@ -43,8 +44,6 @@ class IPCHandlerDBus : public IPCHandler {
private: private:
base::Thread* dbus_thread_; base::Thread* dbus_thread_;
IPCHandlerDBus() = default;
}; };
} // namespace ipc } // namespace ipc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment