Fix 32-bit short_ptr.

This commit is contained in:
Bartosz Taudul 2020-02-02 02:36:28 +01:00
parent b55fa19f72
commit ea4b64909f

View File

@ -71,6 +71,9 @@ public:
tracy_force_inline T* operator->() { return m_ptr; }
tracy_force_inline const T* operator->() const { return m_ptr; }
tracy_force_inline T* get() { return m_ptr; }
tracy_force_inline const T* get() const { return m_ptr; }
private:
T* m_ptr;
};