We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0af7b4 commit 7e4fd8bCopy full SHA for 7e4fd8b
yt/yt/client/chunk_client/chunk_replica-inl.h
@@ -304,8 +304,8 @@ inline bool IsErasureChunkId(TChunkId id)
304
inline bool IsErasureChunkPartType(NObjectClient::EObjectType type)
305
{
306
return
307
- type >= NObjectClient::MinErasureChunkPartType && type <= NObjectClient::MaxErasureChunkPartType ||
308
- type >= NObjectClient::MinErasureJournalChunkPartType && type <= NObjectClient::MaxErasureJournalChunkPartType;
+ (type >= NObjectClient::MinErasureChunkPartType && type <= NObjectClient::MaxErasureChunkPartType) ||
+ (type >= NObjectClient::MinErasureJournalChunkPartType && type <= NObjectClient::MaxErasureJournalChunkPartType);
309
}
310
311
inline bool IsErasureChunkPartId(TChunkId id)
0 commit comments