diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 23:03:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 23:03:53 +0300 |
commit | d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7 (patch) | |
tree | 0743bbbce424d9b46398ce22d87cbb7a9fdd3702 /src | |
parent | e781295eebe67c5000256ea63dd0d54433434aaf (diff) | |
download | plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.gz plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.bz2 plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.xz plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.zip |
Remove default parameters from emotedb.h
Diffstat (limited to 'src')
-rw-r--r-- | src/resources/db/emotedb.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/resources/db/emotedb.h b/src/resources/db/emotedb.h index 6d5420b51..eea79fca5 100644 --- a/src/resources/db/emotedb.h +++ b/src/resources/db/emotedb.h @@ -51,12 +51,13 @@ namespace EmoteDB void unload(); const EmoteInfo *get(const int id, - const bool allowNull = false) A_WARN_UNUSED; + const bool allowNull) A_WARN_UNUSED; - const EmoteInfo *get2(int id, const bool allowNull = false) A_WARN_UNUSED; + const EmoteInfo *get2(int id, + const bool allowNull) A_WARN_UNUSED; - const EmoteSprite *getSprite(const int id, const bool allowNull = false) - A_WARN_UNUSED; + const EmoteSprite *getSprite(const int id, + const bool allowNull) A_WARN_UNUSED; const int &getLast() A_CONST A_WARN_UNUSED; |