From 86564fc248b8ad00dce808ebed86342309b57767 Mon Sep 17 00:00:00 2001 From: BartolomeyKant Date: Mon, 13 Apr 2026 17:34:02 +0500 Subject: [PATCH] fix unreachable code --- aether/aether_app.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aether/aether_app.cpp b/aether/aether_app.cpp index f22eeae4..1f2299f3 100644 --- a/aether/aether_app.cpp +++ b/aether/aether_app.cpp @@ -74,8 +74,7 @@ static Aether::ptr AetherFactory(AetherAppContext const& context) { // Create a new instance of Aether if it's not loaded return Aether::ptr::Create( CreateWith{context.domain()}.with_id(GlobalId::kAether)); -#endif -#if !AE_FILTRATION // pure production mode +#else // pure production mode assert(false && "Failed to load Aether"); return Aether::ptr{}; #endif