From 28c48721b1a3fb435fb44fa8b541c153eaffdf04 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 11 Jan 2002 16:26:37 +0000 Subject: [PATCH] fixed HPUX warning --- src/ca/cacIO.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ca/cacIO.h b/src/ca/cacIO.h index 088ea1ff3..bebeb3aa0 100644 --- a/src/ca/cacIO.h +++ b/src/ca/cacIO.h @@ -266,17 +266,17 @@ inline void caAccessRights::clrOperatorConfirmationRequest () inline bool caAccessRights::readPermit () const { - return this->f_readPermit; + return static_cast < bool > ( this->f_readPermit ); } inline bool caAccessRights::writePermit () const { - return this->f_writePermit; + return static_cast < bool > ( this->f_writePermit ); } inline bool caAccessRights::operatorConfirmationRequest () const { - return this->f_operatorConfirmationRequest; + return static_cast < bool > ( this->f_operatorConfirmationRequest ); } #endif // ifndef cacIOh