clang format fix

This commit is contained in:
Arthur Tazhitdinov 2026-01-08 15:40:17 +05:00
parent 3ef2448f72
commit c83fd37286

View File

@ -370,7 +370,7 @@ std::vector<size_t> russianBreakIndexes(const std::vector<CodepointInfo>& cps) {
// Try double consonant split first (preferred). // Try double consonant split first (preferred).
size_t breakIndex = doubleConsonantSplit(cps, clusterStart, clusterEnd); size_t breakIndex = doubleConsonantSplit(cps, clusterStart, clusterEnd);
// Fall back to onset-based split. // Fall back to onset-based split.
if (breakIndex == std::numeric_limits<size_t>::max()) { if (breakIndex == std::numeric_limits<size_t>::max()) {
const size_t onsetLen = russianOnsetLength(cps, clusterStart, clusterEnd); const size_t onsetLen = russianOnsetLength(cps, clusterStart, clusterEnd);