Merge remote-tracking branch 'origin/topic/bernhard/ticket-1144'

* origin/topic/bernhard/ticket-1144:
  Allow iterating over bif functions with result type vector of any.

BIT-1144 #merged
This commit is contained in:
Robin Sommer 2014-03-03 16:34:20 -08:00
commit 7774af7518
13 changed files with 74 additions and 7 deletions

View file

@ -3122,7 +3122,7 @@ bool VectorVal::DoUnserialize(UnserialInfo* info)
for ( int i = 0; i < len; ++i )
{
Val* v;
UNSERIALIZE_OPTIONAL(v, Val::Unserialize(info, TYPE_ANY));
UNSERIALIZE_OPTIONAL(v, Val::Unserialize(info, TYPE_ANY)); // accept any type
Assign(i, v);
}