From eafc81f16891332bedb5c871d6425391fdb28283 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 12 May 2023 21:52:08 +0300 Subject: [PATCH] utils: fix non-cld2 build --- lib/utils/mu-lang-detector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/mu-lang-detector.cc b/lib/utils/mu-lang-detector.cc index deadf2f3..75af37eb 100644 --- a/lib/utils/mu-lang-detector.cc +++ b/lib/utils/mu-lang-detector.cc @@ -23,7 +23,7 @@ using namespace Mu; #ifndef HAVE_CLD2 // Dummy implementation -Option detect_language(const std::string& txt) { return Nothing; } +Option Mu::detect_language(const std::string& txt) { return Nothing; } #else #include #include