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

Commit 2d9148ab authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "Add nolint for implicit borrowed_fd constructors"

am: 8987f061

Change-Id: Ibfb6497be968af5e008c1b20de9de9e9041706a5
parents 2cdc6d7b 8987f061
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -258,9 +258,9 @@ inline DIR* Fdopendir(unique_fd&& ufd) {

// A wrapper type that can be implicitly constructed from either int or unique_fd.
struct borrowed_fd {
  /* implicit */ borrowed_fd(int fd) : fd_(fd) {}
  /* implicit */ borrowed_fd(int fd) : fd_(fd) {}  // NOLINT
  template <typename T>
  /* implicit */ borrowed_fd(const unique_fd_impl<T>& ufd) : fd_(ufd.get()) {}
  /* implicit */ borrowed_fd(const unique_fd_impl<T>& ufd) : fd_(ufd.get()) {}  // NOLINT

  int get() const { return fd_; }