Skip to content

Commit 3839599

Browse files
committed
Format
1 parent 5ee4bb7 commit 3839599

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bindgen/codegen/helpers.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ pub(crate) mod ast_ty {
247247
}
248248
}
249249
(_, true, Some(32)) => syn::parse_quote! { f32 },
250-
(_, true, Some(64)) | (FloatKind::Double, true, None) => syn::parse_quote! { f64 },
250+
(_, true, Some(64)) | (FloatKind::Double, true, None) => {
251+
syn::parse_quote! { f64 }
252+
}
251253
(FloatKind::Float, ..) => raw_type(ctx, "c_float"),
252254
(FloatKind::Double, ..) => raw_type(ctx, "c_double"),
253255
(FloatKind::LongDouble, ..) => {

0 commit comments

Comments
 (0)