Пример #1
0
/**
 * \brief Determine if a C++ member function or member function template is
 * declared 'static'.
 */
func (c Cursor) CXXMethod_IsStatic() bool {
	o := C.clang_CXXMethod_isStatic(c.c)
	if o != C.uint(0) {
		return true
	}
	return false
}
Пример #2
0
// Determine if a C++ member function or member function template is declared 'static'.
func (c Cursor) CXXMethod_IsStatic() bool {
	o := C.clang_CXXMethod_isStatic(c.c)

	return o != C.uint(0)
}