Skip to content

Commit

Permalink
fix CI issue with Nim devel
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Sep 5, 2023
1 parent 2ed2f5f commit 4e36836
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/base/wrapperTypes.nim
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,8 @@ template derefPtr*[T](x: T): untyped =
else:
x

template derefPtr*[T](x: typedesc[T]): typedesc =
type T
template derefPtr*[T](x: typedesc[ptr T]): typedesc =
type T
template derefPtr*[T](x: typedesc[T]): typedesc = T
template derefPtr*[T](x: typedesc[ptr T]): typedesc = T

#template makeWrapperTypeX(wf:WFSet, name,fName,asName,tasName: untyped) =
template makeWrapperTypeX(wf:typed, name,fName,asName,tasName: untyped) =
Expand Down

0 comments on commit 4e36836

Please sign in to comment.