summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--o3tl/qa/test-typed_flags.cxx4
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