aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMachiavelli <none@none>2009-12-23 11:28:13 +0100
committerMachiavelli <none@none>2009-12-23 11:28:13 +0100
commite1e57515f790c15c1ebff7081bd9142985882047 (patch)
treee5609d993ad73c75914f729f2c38bc4c6e6a342e /src
parent73a849ae1d87d5f1c2bbf6576b8f800c2eaf9bab (diff)
Remove unneeded typecast
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Group.h b/src/game/Group.h
index 0e7bb81a3ae..104b38c8588 100644
--- a/src/game/Group.h
+++ b/src/game/Group.h
@@ -413,7 +413,7 @@ class TRINITY_DLL_SPEC Group
for (member_witerator itr = m_memberSlots.begin(); itr != m_memberSlots.end(); ++itr)
{
if (itr->flags & flag)
- itr->flags = GroupMemberFlags(itr->flags & ~flag);
+ itr->flags = &= ~flag;
}
}