Updated a cast to use a more appropriate type.

This commit is contained in:
Aaron Jacobs 2011-05-24 00:43:30 +00:00
parent 3b556ec633
commit 785ba2675d

View File

@ -926,7 +926,7 @@ Value::isConvertibleTo( ValueType other ) const
|| other == booleanValue;
case uintValue:
return ( other == nullValue && value_.uint_ == 0 )
|| ( other == intValue && value_.uint_ <= (unsigned)maxInt )
|| ( other == intValue && value_.uint_ <= (LargestUInt)maxInt )
|| other == uintValue
|| other == realValue
|| other == stringValue