(thetype)
| 81 | return thetype |
| 82 | |
| 83 | def striparraysuffix(thetype): |
| 84 | if(thetype[len(thetype) - 1] == ']'): |
| 85 | thetype = thetype[0:thetype.find('[')-1] |
| 86 | if(thetype == '_Bool'): |
| 87 | thetype = 'bool' |
| 88 | return thetype |
| 89 | |
| 90 | def converttype(thetype): |
| 91 | if(thetype[0:11] == 'struct vr::'): |
no test coverage detected