Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 233f477

Browse files
committed
Formatting
1 parent 2b235bb commit 233f477

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shell/platform/darwin/macos/framework/Source/FlutterEngine.mm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,9 +645,9 @@ - (void)sendUserLocales {
645645
// Convert to a list of pointers, and send to the engine.
646646
std::vector<const FlutterLocale*> flutterLocaleList;
647647
flutterLocaleList.reserve(flutterLocales.size());
648-
std::transform(
649-
flutterLocales.begin(), flutterLocales.end(), std::back_inserter(flutterLocaleList),
650-
[](const auto& arg) -> const auto* { return &arg; });
648+
std::transform(flutterLocales.begin(), flutterLocales.end(),
649+
std::back_inserter(flutterLocaleList),
650+
[](const auto& arg) -> const auto* { return &arg; });
651651
_embedderAPI.UpdateLocales(_engine, flutterLocaleList.data(), flutterLocaleList.size());
652652
}
653653

0 commit comments

Comments
 (0)