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

Commit 80160608 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

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

Change-Id: Ic9e6725b071d2223e653044a7fa830e6c916658c
parents b3f08d64 9ade0a8f
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