From 391cc3c556740951d89d19049d8902e0f8649d2e Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 23 Jul 2026 16:18:58 +0300 Subject: [PATCH] cld2: fix language-detector Inverted #if check. --- lib/utils/mu-lang-detector.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/mu-lang-detector.cc b/lib/utils/mu-lang-detector.cc index 9304c9dc..1145510f 100644 --- a/lib/utils/mu-lang-detector.cc +++ b/lib/utils/mu-lang-detector.cc @@ -1,5 +1,5 @@ /* -** Copyright (C) 2023 Dirk-Jan C. Binnema +** Copyright (C) 2023-2026 Dirk-Jan C. Binnema ** ** This program is free software; you can redistribute it and/or modify it ** under the terms of the GNU General Public License as published by the @@ -21,7 +21,7 @@ using namespace Mu; -#if HAVE_CLD2 +#if !HAVE_CLD2 // Dummy implementation Option Mu::detect_language(const std::string& txt) { return Nothing; } #else