summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemBoat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemBoat.h')
-rw-r--r--src/Items/ItemBoat.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Items/ItemBoat.h b/src/Items/ItemBoat.h
index ea95e6a47..682b68ff2 100644
--- a/src/Items/ItemBoat.h
+++ b/src/Items/ItemBoat.h
@@ -8,14 +8,15 @@
-class cItemBoatHandler :
+class cItemBoatHandler:
public cItemHandler
{
- typedef cItemHandler super;
+ using Super = cItemHandler;
public:
- cItemBoatHandler(int a_ItemType) :
- super(a_ItemType)
+
+ cItemBoatHandler(int a_ItemType):
+ Super(a_ItemType)
{
}