File tree Expand file tree Collapse file tree 4 files changed +1
-3
lines changed Expand file tree Collapse file tree 4 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ girs_directories = ["../../gir-files"]
8
8
9
9
ignore = [
10
10
" GLib.ANALYZER_ANALYZING" ,
11
+ " GLib.C_STD_VERSION" ,
11
12
" GLib.DIR_SEPARATOR" ,
12
13
" GLib.DIR_SEPARATOR_S" ,
13
14
" GLib.GINT16_FORMAT" ,
Original file line number Diff line number Diff line change @@ -698,7 +698,6 @@ pub const G_CSET_A_2_Z: *const c_char =
698
698
pub const G_CSET_DIGITS : * const c_char = b"0123456789\0 " as * const u8 as * const c_char ;
699
699
pub const G_CSET_a_2_z : * const c_char =
700
700
b"abcdefghijklmnopqrstuvwxyz\0 " as * const u8 as * const c_char ;
701
- pub const G_C_STD_VERSION : c_int = 199000 ;
702
701
pub const G_DATALIST_FLAGS_MASK : c_int = 3 ;
703
702
pub const G_DATE_BAD_DAY : c_int = 0 ;
704
703
pub const G_DATE_BAD_JULIAN : c_int = 0 ;
Original file line number Diff line number Diff line change @@ -1006,7 +1006,6 @@ const RUST_CONSTANTS: &[(&str, &str)] = &[
1006
1006
( "G_CSET_A_2_Z" , "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ) ,
1007
1007
( "G_CSET_DIGITS" , "0123456789" ) ,
1008
1008
( "G_CSET_a_2_z" , "abcdefghijklmnopqrstuvwxyz" ) ,
1009
- ( "G_C_STD_VERSION" , "199000" ) ,
1010
1009
( "G_DATALIST_FLAGS_MASK" , "3" ) ,
1011
1010
( "(gint) G_DATE_APRIL" , "4" ) ,
1012
1011
( "(gint) G_DATE_AUGUST" , "8" ) ,
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ int main() {
71
71
PRINT_CONSTANT (G_CSET_A_2_Z );
72
72
PRINT_CONSTANT (G_CSET_DIGITS );
73
73
PRINT_CONSTANT (G_CSET_a_2_z );
74
- PRINT_CONSTANT (G_C_STD_VERSION );
75
74
PRINT_CONSTANT (G_DATALIST_FLAGS_MASK );
76
75
PRINT_CONSTANT ((gint ) G_DATE_APRIL );
77
76
PRINT_CONSTANT ((gint ) G_DATE_AUGUST );
You can’t perform that action at this time.
0 commit comments