Hi there,
There is an error with Value class which is if you create a new Value passing 0 as parameter (i.e. a Value with integer 0), it crashes with assertion because of following lines:
Value::Value (ValueSource* const value_)
: value (value_)
{
jassert (value_ != nullptr);
}
Is that normal or can it be changed ?
Thanks and best regards