Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ksqsf committed Jan 5, 2024
1 parent 39d4e9b commit a48a887
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion macosfrontend/macosfrontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ MacosInputContext *MacosFrontend::findICByCookie(Cookie cookie) {
}

Cookie MacosFrontend::createInputContext() {
auto ic = std::make_unique<MacosInputContext>(this, instance_->inputContextManager(), "");
auto ic = std::make_unique<MacosInputContext>(
this, instance_->inputContextManager(), "");
auto cookie = nextCookie_;
nextCookie_ += 1;
icTable_[cookie] = std::move(ic);
Expand Down

0 comments on commit a48a887

Please sign in to comment.