Skip to content

Commit 2f15e67

Browse files
committed
replace bool with RealBool
1 parent 54d1ab1 commit 2f15e67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

diesel_derives/src/query_id.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub fn derive(mut item: syn::DeriveInput) -> Result<proc_macro2::TokenStream, Di
3131
{
3232
type QueryId = #struct_name<#(#lifetimes,)* #(#query_id_ty_params,)*>;
3333

34-
const HAS_STATIC_QUERY_ID: bool = #(#has_static_query_id &&)* true;
34+
const HAS_STATIC_QUERY_ID: diesel::RealBool = #(#has_static_query_id &&)* true;
3535
}
3636
}))
3737
}

0 commit comments

Comments
 (0)