Skip to content
Snippets Groups Projects
Commit 9930096c authored by William Escande's avatar William Escande
Browse files

Explictly delete default constructor

This constructor is never called and was implicitly deleted.
Build flag is throwing a error when building for host

Test: atest --host with OS_GENERIC defined
Change-Id: Ic807687181f7f732dff0dfce2e6643686f2134d0
parent 4a6631bf
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