int asCDataType::GetSizeOnStackDWords() const { int size = tokenType == ttQuestion ? 1 : 0; if( isReference ) return AS_PTR_SIZE + size; if( objectType ) return AS_PTR_SIZE + size; return GetSizeInMemoryDWords() + size; }
int asCDataType::GetSizeOnStackDWords() const { // If the type is the variable type then the typeid is stored on the stack too int size = tokenType == ttQuestion ? 1 : 0; if( isReference ) return AS_PTR_SIZE + size; if( objectType && !IsEnumType() ) return AS_PTR_SIZE + size; return GetSizeInMemoryDWords() + size; }