File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
c2rust-transpile/src/c_ast Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1950,11 +1950,11 @@ impl ConversionContext {
19501950 // __CHARn_TYPE__ for n ∈ {8, 16, 32} also lack obvious translation
19511951 "__UINTPTR_TYPE__" => CTypeKind :: UIntPtr ,
19521952 _ => {
1953- log :: debug !( "Unknown target-dependent macro {macro_name}!" ) ;
1953+ eprintln ! ( "Unknown target-dependent macro {macro_name}!" ) ;
19541954 return None ;
19551955 }
19561956 } ;
1957- log :: trace !( "Selected kind {kind} for typedef {name}" ) ;
1957+ eprintln ! ( "Selected kind {kind} for typedef {name}" ) ;
19581958 Some ( CQualTypeId :: new (
19591959 self . typed_context . type_for_kind ( & kind) . unwrap ( ) ,
19601960 ) )
@@ -1981,11 +1981,11 @@ impl ConversionContext {
19811981 "__int64_t" => CTypeKind :: Int64 ,
19821982 "__int128_t" => CTypeKind :: Int128 ,
19831983 _ => {
1984- log :: debug !( "Unknown fixed-size type typedef {name}!" ) ;
1984+ eprintln ! ( "Unknown fixed-size type typedef {name}!" ) ;
19851985 return None ;
19861986 }
19871987 } ;
1988- log :: trace !( "Selected kind {kind} for typedef {name}" ) ;
1988+ eprintln ! ( "Selected kind {kind} for typedef {name}" ) ;
19891989 Some ( CQualTypeId :: new (
19901990 self . typed_context . type_for_kind ( & kind) . unwrap ( ) ,
19911991 ) )
You can’t perform that action at this time.
0 commit comments