mirror of
https://github.com/holub/mame
synced 2025-06-09 06:13:04 +03:00
Fixed multiple instance of operator = , fixes VS build (nw)
This commit is contained in:
parent
d36f0a4ab7
commit
d6d177a29d
@ -183,7 +183,8 @@ public:
|
||||
|
||||
bool is_owned() const { return m_is_owned; }
|
||||
|
||||
powned_ptr & operator =(powned_ptr &r)
|
||||
template<typename _DC>
|
||||
powned_ptr<_DC> & operator =(powned_ptr<_DC> &r)
|
||||
{
|
||||
m_is_owned = r.m_is_owned;
|
||||
m_ptr = r.m_ptr;
|
||||
|
Loading…
Reference in New Issue
Block a user