summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemSoup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemSoup.h')
-rw-r--r--src/Items/ItemSoup.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Items/ItemSoup.h b/src/Items/ItemSoup.h
index 958c0e0ea..60a2f8d76 100644
--- a/src/Items/ItemSoup.h
+++ b/src/Items/ItemSoup.h
@@ -8,14 +8,15 @@
-class cItemSoupHandler :
+class cItemSoupHandler:
public cItemFoodHandler
{
- typedef cItemFoodHandler super;
+ using Super = cItemFoodHandler;
public:
- cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo) :
- super(a_ItemType, a_FoodInfo)
+
+ cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo):
+ Super(a_ItemType, a_FoodInfo)
{
}