File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ jobs:
238238 override : true
239239
240240 - name : Check cfg
241- run : cargo check -Z unstable-options -Z check-cfg=features
241+ run : cargo check -Z unstable-options -Z check-cfg
242242
243243 test-book :
244244 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -98,13 +98,13 @@ pub(crate) trait ItemAncestors {
9898 fn ancestors < ' a > ( & self , ctx : & ' a BindgenContext ) -> ItemAncestorsIter < ' a > ;
9999}
100100
101- #[ cfg( __testing_only_extra_assertions) ]
101+ #[ cfg( feature = " __testing_only_extra_assertions" ) ]
102102type DebugOnlyItemSet = ItemSet ;
103103
104- #[ cfg( not( __testing_only_extra_assertions) ) ]
104+ #[ cfg( not( feature = " __testing_only_extra_assertions" ) ) ]
105105struct DebugOnlyItemSet ;
106106
107- #[ cfg( not( __testing_only_extra_assertions) ) ]
107+ #[ cfg( not( feature = " __testing_only_extra_assertions" ) ) ]
108108impl DebugOnlyItemSet {
109109 fn new ( ) -> Self {
110110 DebugOnlyItemSet
You can’t perform that action at this time.
0 commit comments