mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
Fixed multiple instance of operator = , fixes VS build (nw)
This commit is contained in:
parent
d36f0a4ab7
commit
d6d177a29d
@ -182,8 +182,9 @@ 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