Skip to content
Snippets Groups Projects
Commit 5eefd760 authored by Jan Hoenig's avatar Jan Hoenig
Browse files

Fixed cpujit with new DataType

parent 57ab61ac
Branches
Tags
No related merge requests found
......@@ -37,7 +37,7 @@ CONFIG = CONFIG_GCC
def ctypeFromString(typename, includePointers=True):
import ctypes as ct
typename = typename.replace("*", " * ")
typename = str(typename).replace("*", " * ")
typeComponents = typename.split()
basicTypeMap = {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment