Exemplo n.º 1
0
bool StatusVector::ImplStatusVector::compare(const StatusVector& v) const throw()
{
    return length() == v.length() && fb_utils::cmpStatus(length(), value(), v.value());
}
Exemplo n.º 2
0
bool StatusVector::ImplStatusVector::compare(const StatusVector& v) const throw()
{
	return m_length == v.length() &&
		   memcmp(m_status_vector, v.value(), m_length * sizeof(ISC_STATUS)) == 0;
}