From 8496bf6167ea85947cae1c7e57c60a4ba75f5ac2 Mon Sep 17 00:00:00 2001 From: wangtiantian Date: Mon, 10 May 2021 20:41:24 +0800 Subject: [PATCH] update frameworks/font/ui_line_break.cpp. fix codex --- frameworks/font/ui_line_break.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/font/ui_line_break.cpp b/frameworks/font/ui_line_break.cpp index 30cd42c..d7646af 100755 --- a/frameworks/font/ui_line_break.cpp +++ b/frameworks/font/ui_line_break.cpp @@ -60,7 +60,7 @@ uint16_t UILineBreakEngine::GetNextBreakPos(UILineBreakProxy& record) category &= ~0x4000; } state = row->fNextState[category]; - row = reinterpret_cast( rbbStateTable->fTableData + rbbStateTable->fRowLen * state); + row = reinterpret_cast(rbbStateTable->fTableData + rbbStateTable->fRowLen * state); int16_t completedRule = row->fAccepting; if ((completedRule > 0) || (state == LINE_BREAK_STATE_STOP)) { return index; -- GitLab