diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-14 14:36:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-14 14:36:44 +0200 |
commit | 9a5e03b8c9d422de43e899e3f880a03dc5c50d84 (patch) | |
tree | a3c159c50276053807251acac33fbb27254b4239 /o3tl | |
parent | 0fdba36ab6aa1eef3e147371153b7c5d12c11cae (diff) |
need explicit bool conversions here
to make some tinderboxes happy
Change-Id: I136895674cec8eda874acda0bf5c7a96b3a22778
Diffstat (limited to 'o3tl')
-rw-r--r-- | o3tl/qa/test-typed_flags.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/o3tl/qa/test-typed_flags.cxx b/o3tl/qa/test-typed_flags.cxx index de6e080eddd0..d5b5ff7f112f 100644 --- a/o3tl/qa/test-typed_flags.cxx +++ b/o3tl/qa/test-typed_flags.cxx @@ -42,10 +42,10 @@ public: CPPUNIT_ASSERT( ~ConfigurationChangedHint::ONE ); nHint |= ConfigurationChangedHint::ONE; - CPPUNIT_ASSERT( nHint |= ConfigurationChangedHint::ONE ); + CPPUNIT_ASSERT( bool(nHint |= ConfigurationChangedHint::ONE) ); nHint &= ConfigurationChangedHint::ONE; - CPPUNIT_ASSERT( nHint &= ConfigurationChangedHint::ONE ); + CPPUNIT_ASSERT( bool(nHint &= ConfigurationChangedHint::ONE) ); } // Change the following lines only, if you add, remove or rename |