Access to hasher. Currently this returns a copy, but it may be modified to return a const reference in the future.
| 1649 | // Access to hasher. Currently this returns a copy, but it may |
| 1650 | // be modified to return a const reference in the future. |
| 1651 | hasher hash_function() const { |
| 1652 | return old_style_ ? deprecated_elements_->hash_function() |
| 1653 | : elements_->hash_function(); |
| 1654 | } |
| 1655 | |
| 1656 | private: |
| 1657 | // Set default enum value only for proto2 map field whose value is enum type. |
nothing calls this directly
no outgoing calls
no test coverage detected