diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-29 22:46:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-29 22:46:06 +0300 |
commit | e9b375927f271808d507c5a95443d460bbd6ce92 (patch) | |
tree | bc7df0276c727ae6a38632a154b4666127f30c39 /src/being | |
parent | 3411edb5d3ae07d247421e4b8f7936a22b7b4027 (diff) | |
download | plus-e9b375927f271808d507c5a95443d460bbd6ce92.tar.gz plus-e9b375927f271808d507c5a95443d460bbd6ce92.tar.bz2 plus-e9b375927f271808d507c5a95443d460bbd6ce92.tar.xz plus-e9b375927f271808d507c5a95443d460bbd6ce92.zip |
Fix compilation without C++11 flag.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/playerinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h index d16bd6474..cba86bd79 100644 --- a/src/being/playerinfo.h +++ b/src/being/playerinfo.h @@ -52,8 +52,8 @@ struct Stat final }; typedef std::map<int, int> IntMap; -typedef std::map<Attributes, int> AtrIntMap; -typedef std::map<Attributes, Stat> StatMap; +typedef std::map<AttributesT, int> AtrIntMap; +typedef std::map<AttributesT, Stat> StatMap; /** * Backend for core player information. |