예제 #1
0
파일: type.go 프로젝트: zimmski/go-clang
// PointeeType (for pointer types), returns the type of the pointee.
func (t Type) PointeeType() Type {
	o := C.clang_getPointeeType(t.c)
	return Type{o}
}
예제 #2
0
파일: type_gen.go 프로젝트: go-clang/v3.4
// For pointer types, returns the type of the pointee.
func (t Type) PointeeType() Type {
	return Type{C.clang_getPointeeType(t.c)}
}