| 572 | { |
| 573 | public: |
| 574 | CServiceHash() |
| 575 | : m_salt_k0{FastRandomContext().rand64()}, |
| 576 | m_salt_k1{FastRandomContext().rand64()} |
| 577 | { |
| 578 | } |
| 579 | |
| 580 | CServiceHash(uint64_t salt_k0, uint64_t salt_k1) : m_salt_k0{salt_k0}, m_salt_k1{salt_k1} {} |
| 581 |
nothing calls this directly
no test coverage detected