I think I am missing something here but can't figure out what..
If I do this, I get compile error "error C2446: ':': no conversion from 'const boost::defer_lock_t' to 'const boost::try_to_lock_t'"
public:
explicit BasicScopedLock( CCondition& condition, bool initiallyLocked = true )
: LockType( condition.mutex, (initiallyLocked == true ? (boost::try_to_lock) : (boost::defer_lock)) )
, m_condition( condition )
{
}
But if I do this, it compiles.
public:
explicit BasicScopedLock( CCondition& condition, bool initiallyLocked = true )
: LockType( condition.mutex, boost::try_to_lock )
, m_condition( condition )
{
}
This works too...
public:
explicit BasicScopedLock( CCondition& condition, bool initiallyLocked = true )
: LockType( condition.mutex, boost::defer_lock )
, m_condition( condition )
{
}
Does anyone have a clue on why compiler doesn't like the if statement here?
Thank you!
The problem is that
boost::try_to_lock
andboost::defer_lock
are of completely unrelated types, andLockType( condition.mutex, boost::try_to_lock)
andLockType(condition.mutex, boost::defer_lock)
are invoking separate overloads. As such, you can't use the ternary operator to pick between them.Your options are:
A. to find another overload of the
LockType
constructor that will allow you to switch at runtime (this is obviously best)B. if
LockType
is a moveable type, then you can write a function:C. to use the universal solution to problems in computer science: add another level of indirection. Change the declaration of
LockType
to:and the initialization to: