We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa674e commit 58cf53eCopy full SHA for 58cf53e
src/clang.rs
@@ -444,15 +444,6 @@ impl Cursor {
444
pub fn is_virtual_base(&self) -> bool {
445
unsafe { clang_isVirtualBase(self.x) != 0 }
446
}
447
-
448
- /// Given that this cursor's referent is a template specialization or
449
- /// declaration, get the `i`th template argument kind.
450
- ///
451
- /// If the referent is not a template or `i` is out of bounds, an invalid
452
- /// kind is returned.
453
- pub fn template_arg_kind(&self, i: c_int) -> CXTemplateArgumentKind {
454
- unsafe { clang_Cursor_getTemplateArgumentKind(self.x, i as c_uint) }
455
- }
456
457
458
extern "C" fn visit_children<Visitor>(cur: CXCursor,
0 commit comments