コード例 #1
0
ファイル: StatusArg.cpp プロジェクト: RAvenGEr/opencvr
bool StatusVector::ImplStatusVector::compare(const StatusVector& v) const throw()
{
    return length() == v.length() && fb_utils::cmpStatus(length(), value(), v.value());
}
コード例 #2
0
ファイル: StatusArg.cpp プロジェクト: narolez571/firebird
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;
}