Skip to content

Commit ef0b350

Browse files
j-probertmartinweismann
authored andcommitted
Make predeclarations generic
1 parent 85491cf commit ef0b350

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/buildbindingclientimplccpp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,9 @@ static typename tCLASS::tBINDING_PTR CreateWrappedInstance(tARGS&&... args)
246246
template <typename tCLASS>
247247
static tCLASS* UnsafeGetWrappedInstance(typename tCLASS::tBINDING_PTR pBindingPtr);
248248
template <typename tCLASS>
249-
static tCLASS* UnsafeGetWrappedInstance(AbstractCAMExtendedHandle extendedHandle);
249+
static tCLASS* UnsafeGetWrappedInstance({{.NameSpace}}ExtendedHandle extendedHandle);
250250
template <typename tCLASS>
251-
static tCLASS* UnsafeGetWrappedInstance(AbstractCAMHandle handle);
251+
static tCLASS* UnsafeGetWrappedInstance({{.NameSpace}}Handle handle);
252252
253253
// Given a pointer to a binding object, cast the wrapped handle to a client
254254
// implementation instance. The caller is responsible for ensuring that the

0 commit comments

Comments
 (0)