| 157 | |
| 158 | |
| 159 | static uint32 |
| 160 | BsonValueHashFunc(const void *obj, size_t objsize) |
| 161 | { |
| 162 | uint32_t hashValue = 0; |
| 163 | const char *collationString = NULL; |
| 164 | BsonValueHashFuncCore((const bson_value_t *) obj, collationString, &hashValue); |
| 165 | return hashValue; |
| 166 | } |
| 167 | |
| 168 | |
| 169 | static int |
nothing calls this directly
no test coverage detected