diff options
author | alexvru <alexvru@ydb.tech> | 2022-09-24 20:51:05 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2022-09-24 20:51:05 +0300 |
commit | 5db281b96a25fdced40fb6e21a00c2c501ad0662 (patch) | |
tree | caa2b0c412b82dd379ca684f9cb073631f16b97b /library/cpp | |
parent | 1e31d37252ec7af9d09375f1acd77dda07e08366 (diff) | |
download | ydb-5db281b96a25fdced40fb6e21a00c2c501ad0662.tar.gz |
Add GroupOverseer component for testing
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/core/actor.h | 2 | ||||
-rw-r--r-- | library/cpp/actors/core/actorid.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/library/cpp/actors/core/actor.h b/library/cpp/actors/core/actor.h index 0a3b4110db..267107da84 100644 --- a/library/cpp/actors/core/actor.h +++ b/library/cpp/actors/core/actor.h @@ -555,3 +555,5 @@ struct THash<NActors::TActorIdentity> { return x.Hash(); } }; + +template<> struct std::hash<NActors::TActorIdentity> : THash<NActors::TActorIdentity> {}; diff --git a/library/cpp/actors/core/actorid.h b/library/cpp/actors/core/actorid.h index d972b1a0ff..a9cac589b2 100644 --- a/library/cpp/actors/core/actorid.h +++ b/library/cpp/actors/core/actorid.h @@ -194,3 +194,5 @@ struct THash<NActors::TActorId> { return x.Hash(); } }; + +template<> struct std::hash<NActors::TActorId> : THash<NActors::TActorId> {}; |