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 {
1950
1950
// __CHARn_TYPE__ for n ∈ {8, 16, 32} also lack obvious translation
1951
1951
"__UINTPTR_TYPE__" => CTypeKind :: UIntPtr ,
1952
1952
_ => {
1953
- log :: debug !( "Unknown target-dependent macro {macro_name}!" ) ;
1953
+ eprintln ! ( "Unknown target-dependent macro {macro_name}!" ) ;
1954
1954
return None ;
1955
1955
}
1956
1956
} ;
1957
- log :: trace !( "Selected kind {kind} for typedef {name}" ) ;
1957
+ eprintln ! ( "Selected kind {kind} for typedef {name}" ) ;
1958
1958
Some ( CQualTypeId :: new (
1959
1959
self . typed_context . type_for_kind ( & kind) . unwrap ( ) ,
1960
1960
) )
@@ -1981,11 +1981,11 @@ impl ConversionContext {
1981
1981
"__int64_t" => CTypeKind :: Int64 ,
1982
1982
"__int128_t" => CTypeKind :: Int128 ,
1983
1983
_ => {
1984
- log :: debug !( "Unknown fixed-size type typedef {name}!" ) ;
1984
+ eprintln ! ( "Unknown fixed-size type typedef {name}!" ) ;
1985
1985
return None ;
1986
1986
}
1987
1987
} ;
1988
- log :: trace !( "Selected kind {kind} for typedef {name}" ) ;
1988
+ eprintln ! ( "Selected kind {kind} for typedef {name}" ) ;
1989
1989
Some ( CQualTypeId :: new (
1990
1990
self . typed_context . type_for_kind ( & kind) . unwrap ( ) ,
1991
1991
) )
You can’t perform that action at this time.
0 commit comments