Merge pull request #562 from ubolonton/static-field-name

Mark the return value of TreeCursor::field_name static
This commit is contained in:
Max Brunsfeld 2020-02-27 09:26:35 -08:00 committed by GitHub
commit 824b7d65fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1059,7 +1059,7 @@ impl<'a> TreeCursor<'a> {
}
/// Get the field name of this tree cursor's current node.
pub fn field_name(&self) -> Option<&str> {
pub fn field_name(&self) -> Option<&'static str> {
unsafe {
let ptr = ffi::ts_tree_cursor_current_field_name(&self.0);
if ptr.is_null() {