Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/Item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

// definition of Item
Item::Item() = default;
Item::Item(std::string name, const std::string tag, int price) : Object(name, tag) {
Item::Item(std::string name, const std::string tag, int price) : Object(std::move(name), tag) {
this->price = price;
}
void Item::setDescription(std::string _d) {
this->description = _d;
this->description = std::move(_d);
}
const std::string Item::getDescription() const {
return this->description;
Expand All @@ -15,7 +15,7 @@ const std::string Item::getDescription() const {
Equipment::Equipment() : Item(), health(0), attack(0), defense(0) {
}
Equipment::Equipment(std::string name, int price, int health, int attack, int defense)
: Item(name, "Equipment", price), health(health), attack(attack), defense(defense) {
: Item(std::move(name), "Equipment", price), health(health), attack(attack), defense(defense) {
}
int Equipment::getHealth() const {
return this->health;
Expand Down