commit | 7df8f4f6fb1f9d31174f3ec53930c44e6b515c14 | [log] [tgz] |
---|---|---|
author | Luca Stefani <luca.stefani.ge1@gmail.com> | Wed Sep 09 09:38:02 2020 +0200 |
committer | Jackeagle <jackeagle102@gmail.com> | Tue Apr 06 11:49:23 2021 +0200 |
tree | 6ca96f35c9bf4e7b2cbf8436c69b0195ce8a936d | |
parent | 0bf401587925dab19b1a4a5d8b18b0965631dacb [diff] |
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_;