Merge branch 'master' into topic/logging-framework

This commit is contained in:
Seth Hall 2011-01-20 16:32:29 -05:00
commit 2be835c4e8
38 changed files with 493 additions and 328 deletions

View file

@ -414,15 +414,6 @@ bool Val::DoUnserialize(UnserialInfo* info)
return false;
}
RecordVal* Val::GetAttribs(bool instantiate)
{
if ( ! instantiate || attribs )
return attribs;
attribs = new RecordVal(type->AttributesType());
return attribs;
}
int Val::IsZero() const
{
switch ( type->InternalType() ) {