diff options
Diffstat (limited to 'src/playerinfo.h')
-rw-r--r-- | src/playerinfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/playerinfo.h b/src/playerinfo.h index e228ec7e..69434d5b 100644 --- a/src/playerinfo.h +++ b/src/playerinfo.h @@ -50,8 +50,8 @@ struct Stat int expNeed; }; -typedef std::map<int, int> IntMap; -typedef std::map<int, Stat> StatMap; +using IntMap = std::map<int, int>; +using StatMap = std::map<int, Stat>; /** * Backend for core player information. @@ -84,7 +84,7 @@ struct Special int recharge; }; -typedef std::map<int, Special> SpecialsMap; +using SpecialsMap = std::map<int, Special>; /** * A database like namespace which holds global info about the localplayer |