Commit b4ff40b8 for tesseract

commit b4ff40b81bdd0af2c4d7a2d103fb19428a80c178
Author: Egor Pugin <egor.pugin@gmail.com>
Date:   Wed Jul 29 18:57:34 2026 +0300

    [sw] Update to C++20.

diff --git a/sw.cpp b/sw.cpp
index e989e6e8..f8456193 100644
--- a/sw.cpp
+++ b/sw.cpp
@@ -3,7 +3,7 @@ void build(Solution &s)
     auto &tess = s.addProject("google.tesseract", "main");
     tess += Git("https://github.com/tesseract-ocr/tesseract", "", "{v}");

-    auto cppstd = cpp17;
+    auto cppstd = cpp20;

     auto &libtesseract = tess.addTarget<LibraryTarget>("libtesseract");
     {