diff options
author | tsepez <tsepez@chromium.org> | 2016-09-03 17:10:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-03 17:10:13 -0700 |
commit | 7b36672405c05037709a7ba3e8cc96efe2471408 (patch) | |
tree | 8a7d7d9b27fcf11d97ae0c8b3630b0e586f81bf4 /core/fpdfapi/fpdf_page/include | |
parent | 738766eefaf14fabb168f1f5a5c987f8e7049cab (diff) | |
download | pdfium-7b36672405c05037709a7ba3e8cc96efe2471408.tar.xz |
Use safe bool conversion operators in fpdf_page/chromium/2852chromium/2851chromium/2850
Review-Url: https://codereview.chromium.org/2310693002
Diffstat (limited to 'core/fpdfapi/fpdf_page/include')
-rw-r--r-- | core/fpdfapi/fpdf_page/include/cpdf_generalstate.h | 2 | ||||
-rw-r--r-- | core/fpdfapi/fpdf_page/include/cpdf_path.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/fpdf_page/include/cpdf_generalstate.h b/core/fpdfapi/fpdf_page/include/cpdf_generalstate.h index f07e411973..1cd2d815c8 100644 --- a/core/fpdfapi/fpdf_page/include/cpdf_generalstate.h +++ b/core/fpdfapi/fpdf_page/include/cpdf_generalstate.h @@ -21,7 +21,7 @@ class CPDF_GeneralState { ~CPDF_GeneralState(); void Emplace() { m_Ref.Emplace(); } - operator bool() const { return !!m_Ref; } + explicit operator bool() const { return !!m_Ref; } void SetRenderIntent(const CFX_ByteString& ri); diff --git a/core/fpdfapi/fpdf_page/include/cpdf_path.h b/core/fpdfapi/fpdf_page/include/cpdf_path.h index a9b0a7fac0..ae98531214 100644 --- a/core/fpdfapi/fpdf_page/include/cpdf_path.h +++ b/core/fpdfapi/fpdf_page/include/cpdf_path.h @@ -20,7 +20,7 @@ class CPDF_Path { ~CPDF_Path(); void Emplace() { m_Ref.Emplace(); } - operator bool() const { return !!m_Ref; } + explicit operator bool() const { return !!m_Ref; } int GetPointCount() const; void SetPointCount(int count); |