fix comment indentation
This commit is contained in:
parent
7df316b728
commit
7a48ade7ef
1 changed files with 2 additions and 2 deletions
|
@ -385,10 +385,10 @@ struct llama_server_context {
|
||||||
// 2-byte characters: 110xxxxx 10xxxxxx
|
// 2-byte characters: 110xxxxx 10xxxxxx
|
||||||
if ((c & 0xE0) == 0xC0) {
|
if ((c & 0xE0) == 0xC0) {
|
||||||
multibyte_pending = 1;
|
multibyte_pending = 1;
|
||||||
// 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
|
// 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
|
||||||
} else if ((c & 0xF0) == 0xE0) {
|
} else if ((c & 0xF0) == 0xE0) {
|
||||||
multibyte_pending = 2;
|
multibyte_pending = 2;
|
||||||
// 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
|
// 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
|
||||||
} else if ((c & 0xF8) == 0xF0) {
|
} else if ((c & 0xF8) == 0xF0) {
|
||||||
multibyte_pending = 3;
|
multibyte_pending = 3;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue