Clang formatter: add indent to wrapped functions names. (#548)

This commit is contained in:
あく
2021-07-01 03:45:20 +03:00
committed by GitHub
parent a0e1e42f2d
commit 8211432685
11 changed files with 24 additions and 15 deletions
+5 -2
View File
@@ -37,8 +37,11 @@ MenuItem* menu_item_alloc_menu(const char* label, Icon* icon) {
return menu_item;
}
MenuItem*
menu_item_alloc_function(const char* label, Icon* icon, MenuItemCallback callback, void* context) {
MenuItem* menu_item_alloc_function(
const char* label,
Icon* icon,
MenuItemCallback callback,
void* context) {
MenuItem* menu_item = menu_item_alloc();
menu_item->type = MenuItemTypeFunction;