summaryrefslogtreecommitdiff
path: root/system/gd/hci/controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'system/gd/hci/controller.h')
-rw-r--r--system/gd/hci/controller.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/system/gd/hci/controller.h b/system/gd/hci/controller.h
index ea45aef729..573c695ad6 100644
--- a/system/gd/hci/controller.h
+++ b/system/gd/hci/controller.h
@@ -28,8 +28,10 @@ namespace hci {
class Controller : public Module {
public:
Controller();
+ Controller(const Controller&) = delete;
+ Controller& operator=(const Controller&) = delete;
+
virtual ~Controller();
- DISALLOW_COPY_AND_ASSIGN(Controller);
using CompletedAclPacketsCallback =
common::ContextualCallback<void(uint16_t /* handle */, uint16_t /* num_packets */)>;