Skip to content

Commit c27fe68

Browse files
committed
Removed template_arg_value method in clang.rs
1 parent 823abd5 commit c27fe68

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/clang.rs

-7
Original file line numberDiff line numberDiff line change
@@ -453,13 +453,6 @@ impl Cursor {
453453
pub fn template_arg_kind(&self, i: c_int) -> CXTemplateArgumentKind {
454454
unsafe { clang_Cursor_getTemplateArgumentKind(self.x, i as c_uint) }
455455
}
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-
}
463456
}
464457

465458
extern "C" fn visit_children<Visitor>(cur: CXCursor,

0 commit comments

Comments
 (0)