We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d3e7f commit a133748Copy full SHA for a133748
source/common/protobuf/utility.h
@@ -583,7 +583,9 @@ class MessageUtil {
583
#if defined(HIGRESS) && defined(ENVOY_ENABLE_FULL_PROTOS)
584
class HashCachedMessageUtil : public MessageUtil {
585
public:
586
- bool operator()(const Protobuf::Message& message) const { return message.GetCachedHashValue(); }
+ std::size_t operator()(const Protobuf::Message& message) const {
587
+ return message.GetCachedHashValue();
588
+ }
589
590
bool operator()(const Protobuf::Message& lhs, const Protobuf::Message& rhs) const {
591
return lhs.GetCachedHashValue() == rhs.GetCachedHashValue();
0 commit comments