Skip to content

Commit

Permalink
Merge branch 'fix/clippy' into feat/slimmer-core-wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
jkomyno authored Jan 2, 2024
2 parents 9abaa12 + d8e6a9e commit b00902f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion query-engine/core/src/executor/execute_operation.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(target_arch = "wasm32", allow(unused_variables))]
#![allow(unused_variables)]
#![cfg_attr(not(feature = "metrics"), allow(clippy::let_and_return))]

use super::pipeline::QueryPipeline;
Expand Down
1 change: 1 addition & 0 deletions query-engine/query-engine-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ mod arch {
pub(crate) type Result<T> = std::result::Result<T, error::ApiError>;
}

#[cfg_attr(not(target_arch = "wasm32"), allow(unused_imports))]
pub use arch::*;

0 comments on commit b00902f

Please sign in to comment.