Kaydet (Commit) 9a5e03b8 authored tarafından Noel Grandin's avatar Noel Grandin

need explicit bool conversions here

to make some tinderboxes happy

Change-Id: I136895674cec8eda874acda0bf5c7a96b3a22778
üst 0fdba36a
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment