Merge "Add VirtualLightRefBase"

This commit is contained in:
John Reck 2014-05-09 23:18:19 +00:00 committed by Android (Google) Code Review
commit 1d0fedefbf
1 changed files with 7 additions and 0 deletions

View File

@ -203,6 +203,13 @@ private:
mutable volatile int32_t mCount;
};
// This is a wrapper around LightRefBase that simply enforces a virtual
// destructor to eliminate the template requirement of LightRefBase
class VirtualLightRefBase : public LightRefBase<VirtualLightRefBase> {
public:
virtual ~VirtualLightRefBase() {}
};
// ---------------------------------------------------------------------------
template <typename T>