Skip to content

Commit

Permalink
Run automatic format script as code does not match clang format rules.
Browse files Browse the repository at this point in the history
Developers please rebase to avoid merge conflicts!
  • Loading branch information
Roberto-Nessy authored and github-actions[bot] committed Aug 11, 2024
1 parent 2f110d1 commit 8360ce7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
#include "../code/src/item_override.h"

Item::Item(ItemType type_, int getItemId_, ItemClass class_, bool* logicVar_, HintKey hintKey_, u16 price_, Text name_)
: type(type_), getItemId(getItemId_), itemClass(class_), logicVar(logicVar_), hintKey(hintKey_),
price(price_), name(std::move(name_)) {
: type(type_), getItemId(getItemId_), itemClass(class_), logicVar(logicVar_), hintKey(hintKey_), price(price_),
name(std::move(name_)) {
}

Item::Item(ItemType type_, int getItemId_, ItemClass class_, u8* logicVar_, HintKey hintKey_, u16 price_, Text name_)
: type(type_), getItemId(getItemId_), itemClass(class_), logicVar(logicVar_), hintKey(hintKey_),
price(price_), name(std::move(name_)) {
: type(type_), getItemId(getItemId_), itemClass(class_), logicVar(logicVar_), hintKey(hintKey_), price(price_),
name(std::move(name_)) {
}

Item::Item(ItemType type_, int getItemId_, ItemClass class_, bool* logicVar_, HintKey hintKey_, Text name_)
Expand Down

0 comments on commit 8360ce7

Please sign in to comment.