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

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

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

Change-Id: If020934ba60adc4bcd0496fb8e72b6c0c8a8508b
parents 36d5804a a1417863
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