Skip to content

Commit

Permalink
Separate two test strings
Browse files Browse the repository at this point in the history
Fixes clang compiler warning:

warning: suspicious concatenation of string literals in an array
initialization; did you mean to separate the elements with a comma?
[-Wstring-concatenation]
  • Loading branch information
ryandesign committed Apr 24, 2024
1 parent 4102946 commit 8e9f82b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/multi-thread.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static void parse_sents(Dictionary dict, Parse_Options opts, int thread_id, int
"習近平: 堅守 實體經濟落實高品 質發展",
"文在寅希望半島對話氛 圍在平昌冬奧會後能延續",
"土耳其出兵 搶先機 美土俄棋局怎麼走?",
"默克爾努力獲突破 德社民黨同意開展組閣談判"
"默克爾努力獲突破 德社民黨同意開展組閣談判",

// Thai test sentences from corpus.batch
"ตำรวจ กิน ข้าว",
Expand Down

0 comments on commit 8e9f82b

Please sign in to comment.