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

Commit a93854f2 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "bt: use delete ctor instead of DISALLOW_COPY_AND_ASSIGN" am: a1417863...

Merge "bt: use delete ctor instead of DISALLOW_COPY_AND_ASSIGN" am: a1417863 am: a09280c5 am: 9ade0a8f am: 80160608

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1838535

Change-Id: I36fa921975ba53280e0d84e8cbbff7fd5de11548
parents be4c0d93 80160608
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -57,6 +57,9 @@ struct BigCallbacks {
class IsoManager {
 public:
  IsoManager();
  IsoManager(const IsoManager&) = delete;
  IsoManager& operator=(const IsoManager&) = delete;

  virtual ~IsoManager();

  static IsoManager* GetInstance() {
@@ -233,8 +236,6 @@ class IsoManager {
 private:
  struct impl;
  std::unique_ptr<impl> pimpl_;

  DISALLOW_COPY_AND_ASSIGN(IsoManager);
};

}  // namespace hci