[10984] Alow implicit copy constrictor call for fix build at some compilers.

This commit is contained in:
VladimirMangos 2011-01-08 03:58:54 +03:00
parent ea930108da
commit 106440ad89
2 changed files with 2 additions and 2 deletions

View file

@ -106,7 +106,7 @@ class MassMailMgr
MANGOS_ASSERT(mailProto); MANGOS_ASSERT(mailProto);
} }
explicit MassMail(MassMail const& massmail) MassMail(MassMail const& massmail)
: m_protoMail(const_cast<MassMail&>(massmail).m_protoMail), m_sender(massmail.m_sender) : m_protoMail(const_cast<MassMail&>(massmail).m_protoMail), m_sender(massmail.m_sender)
{ {
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10983" #define REVISION_NR "10984"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__