Skip to content
Snippets Groups Projects
Commit 6586810f authored by William Escande's avatar William Escande Committed by Automerger Merge Worker
Browse files

Merge "Explictly delete default constructor" am: 97cdfc04 am: a9ab726c am: fadc1478

parents 72f9efc6 fadc1478
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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
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