| 155 | } |
| 156 | |
| 157 | void ObjectMatrix::hash( MurmurHash &h ) const |
| 158 | { |
| 159 | Object::hash( h ); |
| 160 | for( const auto &m : m_members ) |
| 161 | { |
| 162 | if( m ) |
| 163 | { |
| 164 | m->hash( h ); |
| 165 | } |
| 166 | else |
| 167 | { |
| 168 | h.append( 0 ); |
| 169 | } |
| 170 | } |
| 171 | h.append( m_rows ); |
| 172 | h.append( m_columns ); |
| 173 | } |