Updates from BitShares FC #22

Closed
nathanielhourt wants to merge 693 commits from dapp-support into latest-fc
Showing only changes of commit b12205caf6 - Show all commits

View file

@ -89,7 +89,7 @@ namespace fc {
template<typename T> template<typename T>
T& smart_ref<T>::operator = ( smart_ref<T>&& u ) { T& smart_ref<T>::operator = ( smart_ref<T>&& u ) {
if( &u == this ) return *impl; if( &u == this ) return *impl;
if( impl ) delete impl; delete impl;
impl = u.impl; impl = u.impl;
u.impl = nullptr; u.impl = nullptr;
return *impl; return *impl;