Skip to content

Commit

Permalink
Class needs a user-defined constructor because field is not initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
DomGries committed Mar 19, 2016
1 parent a90220c commit a9de0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/BattleGround/BattleGroundMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ class BattleGroundQueue
class SelectionPool
{
public:
SelectionPool() : PlayerCount(0) {}
void Init();
bool AddGroup(GroupQueueInfo* ginfo, uint32 desiredCount);
bool KickGroup(uint32 size);
uint32 GetPlayerCount() const {return PlayerCount;}
public:
GroupsQueueType SelectedGroups;
private:
uint32 PlayerCount;
Expand Down

0 comments on commit a9de0d6

Please sign in to comment.