mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 22:56:24 +00:00
refactor(src/common): remove unused imports (#19506)
* refactor(src/common): remove unused imports * fix: build * chore: fix build * chore: size_t -> std::size_t * chore: fix fuckup from previous commit * chore: fix build * chore: fix build * chore: fix build * chore: fix build with std::size_t * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build
This commit is contained in:
@@ -1609,7 +1609,7 @@ public:
|
||||
QuestStatusMap& getQuestStatusMap() { return m_QuestStatus; }
|
||||
QuestStatusSaveMap& GetQuestStatusSaveMap() { return m_QuestStatusSave; }
|
||||
|
||||
[[nodiscard]] size_t GetRewardedQuestCount() const { return m_RewardedQuests.size(); }
|
||||
[[nodiscard]] std::size_t GetRewardedQuestCount() const { return m_RewardedQuests.size(); }
|
||||
[[nodiscard]] bool IsQuestRewarded(uint32 quest_id) const
|
||||
{
|
||||
return m_RewardedQuests.find(quest_id) != m_RewardedQuests.end();
|
||||
|
||||
Reference in New Issue
Block a user