Bug 929314 - Remove Handle::repoint() r=terrence

This commit is contained in:
Jon Coppeard 2014-05-20 10:57:03 +01:00
parent 13361a6401
commit 54f40bded4

View File

@ -484,9 +484,6 @@ class MOZ_NONHEAP_CLASS Handle : public js::HandleBase<T>
bool operator!=(const T &other) const { return *ptr != other; }
bool operator==(const T &other) const { return *ptr == other; }
/* Change this handle to point to the same rooted location RHS does. */
void repoint(const Handle &rhs) { ptr = rhs.address(); }
private:
Handle() {}