Skip to content

Commit dc2ed5c

Browse files
author
Aidan Lee
committed
Recurse __GetHandle
1 parent cb0769a commit dc2ed5c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

include/hx/Functions.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ namespace hx
132132

133133
void* __GetHandle() const override
134134
{
135-
return wrapped.GetPtr();
135+
return wrapped->__GetHandle();
136136
}
137137

138138
inline void __Mark(hx::MarkContext* __inCtx) override
@@ -172,7 +172,7 @@ namespace hx
172172

173173
void* __GetHandle() const override
174174
{
175-
return wrapped.GetPtr();
175+
return wrapped->__GetHandle();
176176
}
177177

178178
inline void __Mark(hx::MarkContext* __inCtx) override
@@ -218,7 +218,7 @@ namespace hx
218218

219219
void* __GetHandle() const override
220220
{
221-
return wrapped.GetPtr();
221+
return wrapped->__GetHandle();
222222
}
223223

224224
inline void __Mark(hx::MarkContext* __inCtx) override
@@ -312,7 +312,7 @@ namespace hx
312312

313313
void* __GetHandle() const override
314314
{
315-
return wrapped.GetPtr();
315+
return wrapped->__GetHandle();
316316
}
317317

318318
inline void __Mark(hx::MarkContext* __inCtx) override
@@ -358,7 +358,7 @@ namespace hx
358358

359359
void* __GetHandle() const override
360360
{
361-
return wrapped.GetPtr();
361+
return wrapped->__GetHandle();
362362
}
363363

364364
inline void __Mark(hx::MarkContext* __inCtx) override

0 commit comments

Comments
 (0)