// Get the original translation unit source file name. func (tu TranslationUnit) Spelling() string { o := cxstring{C.clang_getTranslationUnitSpelling(tu.c)} defer o.Dispose() return o.String() }
/** * \brief Get the original translation unit source file name. */ func (tu TranslationUnit) Spelling() string { cstr := cxstring{C.clang_getTranslationUnitSpelling(tu.c)} defer cstr.Dispose() return cstr.String() }