mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Fix 32-bit short_ptr.
This commit is contained in:
parent
b55fa19f72
commit
ea4b64909f
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user