diff --git a/src/rime/algo/syllabifier.h b/src/rime/algo/syllabifier.h index 157e03f29c..1d46682c01 100644 --- a/src/rime/algo/syllabifier.h +++ b/src/rime/algo/syllabifier.h @@ -20,7 +20,7 @@ class Corrector; using SyllableId = int32_t; struct EdgeProperties : SpellingProperties { - EdgeProperties(SpellingProperties sup) : SpellingProperties(sup) {}; + EdgeProperties(SpellingProperties sup) : SpellingProperties(sup){}; EdgeProperties() = default; bool is_correction = false; }; diff --git a/src/rime/gear/script_translator.cc b/src/rime/gear/script_translator.cc index 09e05958ab..2593aec75b 100644 --- a/src/rime/gear/script_translator.cc +++ b/src/rime/gear/script_translator.cc @@ -172,7 +172,8 @@ ScriptTranslator::ScriptTranslator(const Ticket& ticket) if (!engine_) return; if (Config* config = ticket.schema->config()) { - DLOG(INFO) << "loading configuration from schema_id: " << ticket.schema->schema_id(); + DLOG(INFO) << "loading configuration from schema_id: " + << ticket.schema->schema_id(); config->GetInt(name_space_ + "/spelling_hints", &spelling_hints_); config->GetBool(name_space_ + "/always_show_comments", &always_show_comments_); diff --git a/src/rime/gear/table_translator.cc b/src/rime/gear/table_translator.cc index 6ba5f6a82b..b86dba2142 100644 --- a/src/rime/gear/table_translator.cc +++ b/src/rime/gear/table_translator.cc @@ -211,7 +211,8 @@ TableTranslator::TableTranslator(const Ticket& ticket) if (!engine_) return; if (Config* config = ticket.schema->config()) { - DLOG(INFO) << "loading configuration from schema_id: " << ticket.schema->schema_id(); + DLOG(INFO) << "loading configuration from schema_id: " + << ticket.schema->schema_id(); config->GetBool(name_space_ + "/enable_charset_filter", &enable_charset_filter_); config->GetBool(name_space_ + "/enable_sentence", &enable_sentence_);