Skip to content

Commit dbeed94

Browse files
Operator precedence (#5159)
1 parent 8950256 commit dbeed94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/persqueue/pq_l2_cache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class TPersQueueCacheL2 : public TActorBootstrapped<TPersQueueCacheL2> {
5252
, Offset(blob.Offset)
5353
, PartNo(blob.PartNo)
5454
{
55-
KeyHash = Hash128to32(TabletId, (static_cast<ui64>(Partition.InternalPartitionId) << 17) + PartNo + Partition.IsSupportivePartition() ? 0 : (1 << 16));
55+
KeyHash = Hash128to32(TabletId, (static_cast<ui64>(Partition.InternalPartitionId) << 17) + PartNo + (Partition.IsSupportivePartition() ? 0 : (1 << 16)));
5656
KeyHash = Hash128to32(KeyHash, Offset);
5757
}
5858

0 commit comments

Comments
 (0)