/** * \brief Return 1 if the CXType is a POD (plain old data) type, and 0 * otherwise. */ func (t Type) IsPOD() bool { o := C.clang_isPODType(t.c) if o != C.uint(0) { return true } return false }
// Return 1 if the CXType is a POD (plain old data) type, and 0 otherwise. func (t Type) IsPODType() bool { o := C.clang_isPODType(t.c) return o != C.uint(0) }