From d144976da045db011c697a22003948e4736e9b29 Mon Sep 17 00:00:00 2001 From: Mark McCaskey <5770194+MarkMcCaskey@users.noreply.github.com> Date: Thu, 5 Dec 2019 12:01:46 -0800 Subject: [PATCH] Manually apply formatting to cfg statement --- lib/runtime/src/lib.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/runtime/src/lib.rs b/lib/runtime/src/lib.rs index 3febd072c..13b3dd8d4 100644 --- a/lib/runtime/src/lib.rs +++ b/lib/runtime/src/lib.rs @@ -235,10 +235,13 @@ pub fn default_compiler() -> impl Compiler { #[cfg(all(feature = "default-backend-llvm", not(feature = "docs")))] use wasmer_llvm_backend::LLVMCompiler as DefaultCompiler; - #[cfg(all(any( - feature = "default-backend-singlepass", - all(feature = "deterministic-execution", feature = "singlepass") - ), not(feature = "docs")))] + #[cfg(all( + any( + feature = "default-backend-singlepass", + all(feature = "deterministic-execution", feature = "singlepass") + ), + not(feature = "docs") + ))] use wasmer_singlepass_backend::SinglePassCompiler as DefaultCompiler; #[cfg(any(feature = "default-backend-cranelift", feature = "docs"))]