mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[10974] Possible fix for GCC based build problems after prev. commit.
This commit is contained in:
parent
6b9de2c958
commit
dba840fe01
2 changed files with 6 additions and 1 deletions
|
|
@ -106,6 +106,11 @@ class MassMailMgr
|
||||||
MANGOS_ASSERT(mailProto);
|
MANGOS_ASSERT(mailProto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
explicit MassMail(MassMail const& massmail)
|
||||||
|
: m_protoMail(const_cast<MassMail&>(massmail).m_protoMail), m_sender(massmail.m_sender)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/// m_protoMail is owned by MassMail, so at copy original MassMail field set to NULL
|
/// m_protoMail is owned by MassMail, so at copy original MassMail field set to NULL
|
||||||
std::auto_ptr<MailDraft> m_protoMail;
|
std::auto_ptr<MailDraft> m_protoMail;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10973"
|
#define REVISION_NR "10974"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue