summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorMark Wright <markwright@internode.on.net>2013-02-10 02:04:02 +1100
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-02-09 22:41:50 +0000
commitd4bab97023e3569571a92551040574b20aceca7c (patch)
treefb465a0fe21abe9ce6269fb71613cba7caeea90b /comphelper
parent020e2b900b017d64a52f494707015a0e2e959d63 (diff)
fix compile for change to boost 1.53.0 declaring smart pointer operator bool as explicity for C++11 compilers
Change-Id: If2c3ad68b2ffea645a9f2035cd802553edc0ee79 Reviewed-on: https://gerrit.libreoffice.org/2064 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/scoped_disposing_ptr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/inc/comphelper/scoped_disposing_ptr.hxx b/comphelper/inc/comphelper/scoped_disposing_ptr.hxx
index 9b4fe1bc6922..6c34074b4270 100644
--- a/comphelper/inc/comphelper/scoped_disposing_ptr.hxx
+++ b/comphelper/inc/comphelper/scoped_disposing_ptr.hxx
@@ -78,7 +78,7 @@ public:
operator bool () const
{
- return m_aItem;
+ return static_cast< bool >(m_aItem);
}
virtual ~scoped_disposing_ptr()