File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
libgrust/libformat_parser
generic_format_parser/src Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 14
14
// WARNING: We want to be able to build this crate with a stable compiler,
15
15
// so no `#![feature]` attributes should be added!
16
16
17
- #[ deprecated( note = "Use a proper lexer function for this" ) ]
18
17
fn is_id_start ( c : char ) -> bool {
19
18
c == '_' || unicode_xid:: UnicodeXID :: is_xid_start ( c)
20
19
}
21
20
22
- #[ deprecated( note = "Use a proper lexer function for this" ) ]
23
21
fn is_id_continue ( c : char ) -> bool {
24
22
unicode_xid:: UnicodeXID :: is_xid_continue ( c)
25
23
}
Original file line number Diff line number Diff line change 3
3
// what's the plan? Have a function return something that can be constructed into a vector?
4
4
// or an iterator?
5
5
6
- use std:: { ffi:: CStr , mem } ;
6
+ use std:: ffi:: CStr ;
7
7
8
8
trait IntoFFI < T > {
9
9
fn into_ffi ( self ) -> T ;
You can’t perform that action at this time.
0 commit comments