]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/cuda/contexts/contexts.factor
Remove usages of <void*> and *void*
[factor.git] / extra / cuda / contexts / contexts.factor
index 0ba01cc45350794138b3ccae51777ca944d8898a..714eaab94c60e7d8ba36f30e4db30f85054e2b9e 100644 (file)
@@ -10,7 +10,7 @@ IN: cuda.contexts
 : create-context ( device flags -- context )
     swap
     [ CUcontext <c-object> ] 2dip
-    [ cuCtxCreate cuda-error ] 3keep 2drop *void* ; inline
+    [ cuCtxCreate cuda-error ] 3keep 2drop void* deref ; inline
 
 : sync-context ( -- )
     cuCtxSynchronize cuda-error ; inline