errno_restorer: Make bool operator explicit

* Fixes clang-tidy google-explicit-constructor

Test: m
Change-Id: I8422ca8505fa8a2499b168610e75dc49bd03e88d
diff --git a/base/include/android-base/errno_restorer.h b/base/include/android-base/errno_restorer.h
index 1c8597c..2689505 100644
--- a/base/include/android-base/errno_restorer.h
+++ b/base/include/android-base/errno_restorer.h
@@ -30,7 +30,7 @@
   ~ErrnoRestorer() { errno = saved_errno_; }
 
   // Allow this object to be used as part of && operation.
-  operator bool() const { return true; }
+  explicit operator bool() const { return true; }
 
  private:
   const int saved_errno_;