Bug 850954 - Allow implicit copying of RelocatableValue; r=billm

--HG--
extra : rebase_source : 3190a0178339e997420c27166caeb67dcda3a651
This commit is contained in:
Terrence Cole 2013-03-21 13:58:18 -07:00
Родитель 1c1df3219e
Коммит ff4c891817
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -255,7 +255,7 @@ class RelocatablePtr : public EncapsulatedPtr<T>
if (v) if (v)
post(); post();
} }
explicit RelocatablePtr(const RelocatablePtr<T> &v) : EncapsulatedPtr<T>(v) { RelocatablePtr(const RelocatablePtr<T> &v) : EncapsulatedPtr<T>(v) {
if (this->value) if (this->value)
post(); post();
} }