| 123 | } |
| 124 | |
| 125 | void BlindDataHolder::hash( MurmurHash &h ) const |
| 126 | { |
| 127 | Object::hash( h ); |
| 128 | // Our hash when blindData is empty or when m_data is unnitialized is the same. |
| 129 | // This is currently garanteed by CompoundData but we are safer this way. |
| 130 | if ( m_data->readable().size() ) |
| 131 | { |
| 132 | m_data->hash( h ); |
| 133 | } |
| 134 | } |