We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823abd5 commit c27fe68Copy full SHA for c27fe68
src/clang.rs
@@ -453,13 +453,6 @@ impl Cursor {
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
- /// Given that this cursor's referent is a template specialization, and that
458
- /// the `i`th template argument is an integral, get the `i`th template
459
- /// argument value.
460
- pub fn template_arg_value(&self, i: c_int) -> c_longlong {
461
- unsafe { clang_Cursor_getTemplateArgumentValue(self.x, i as c_uint) }
462
- }
463
464
465
extern "C" fn visit_children<Visitor>(cur: CXCursor,
0 commit comments