This commit is contained in:
jeggermo 2003-05-16 14:28:52 +00:00
commit 347f64413e
6 changed files with 28 additions and 22 deletions

View file

@ -98,7 +98,7 @@ private :
/** Specialization for bool, does an unbiased coin flip */
template <>
void eoUniformInit<bool>::operator()(bool & _b)
inline void eoUniformInit<bool>::operator()(bool & _b)
{
_b = uniform.flip(0.5);
}