chore:remove the capital of Path

This commit is contained in:
luoliwoshang
2024-08-15 09:27:41 +08:00
parent 6b1bc15f37
commit f613316046
3 changed files with 16 additions and 15 deletions

View File

@@ -271,7 +271,9 @@ func (ct *Converter) ProcessBuiltinType(t clang.Type) *ast.BuiltinType {
kind = ast.Float128
default:
// like IBM128,NullPtr,Accum
fmt.Fprintln(os.Stderr, "todo: unknown builtin type:", c.GoString(t.Kind.String().CStr()))
kindStr := t.Kind.String()
defer kindStr.Dispose()
fmt.Fprintln(os.Stderr, "todo: unknown builtin type:", c.GoString(kindStr.CStr()))
}
if IsExplicitSigned(t) {