We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b81788 commit 9df15c1Copy full SHA for 9df15c1
src/ir/context.rs
@@ -1970,7 +1970,13 @@ impl BindgenContext {
1970
CXType_Float => FloatKind::Float,
1971
CXType_Double => FloatKind::Double,
1972
CXType_LongDouble => FloatKind::LongDouble,
1973
- _ => panic!("Non floating-type complex?"),
+ _ => {
1974
+ panic!(
1975
+ "Non floating-type complex? {:?}, {:?}",
1976
+ ty,
1977
+ float_type,
1978
+ )
1979
+ },
1980
};
1981
TypeKind::Complex(float_kind)
1982
}
0 commit comments