diff options
author | Richard Linden <none@none> | 2010-09-29 15:50:12 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-09-29 15:50:12 -0700 |
commit | 68b4d9164ccf2b3bb643f153be4d3b2821c4d9d9 (patch) | |
tree | f63071847eccf14fdfe6848e75cd815ef68347ea /indra/llui | |
parent | 2fd5b397ad886d7f8a8792382374cd8c678abc0d (diff) |
removed unworkable subclassing support from LLHandle<T>
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llhandle.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/llui/llhandle.h b/indra/llui/llhandle.h index a198a26c22..8c000eee48 100644 --- a/indra/llui/llhandle.h +++ b/indra/llui/llhandle.h @@ -61,13 +61,6 @@ public: return *this; } - template<typename Subclass> - LLHandle<T>& operator =(const LLHandle<Subclass>& other) - { - mTombStone = other.mTombStone; - return *this; - } - bool isDead() const { return mTombStone->getTarget() == NULL; @@ -101,7 +94,6 @@ public: } protected: - template<typename T> friend class LLHandle; LLPointer<LLTombStone<T> > mTombStone; private: |