Wrap allow(clippy::all) twice to avoid potential stability errors in the future.

This commit is contained in:
o0Ignition0o 2020-11-18 14:12:42 +01:00 committed by Austin Bonander
parent 4b223af2d3
commit 52d482ffd1

View File

@ -273,13 +273,16 @@ where
let ret_tokens = quote! {
#[allow(clippy::all)]
{{
use sqlx::Arguments as _;
{
#[allow(clippy::all)]
{
use sqlx::Arguments as _;
#args_tokens
#args_tokens
#output
}}
#output
}
}
};
// Store query metadata only if offline support is enabled but the current build is online.