[geos-commits] [SCM] GEOS branch main updated. de9084960cfdbc621f4e544ff1c429253c86f39c

git at osgeo.org git at osgeo.org
Fri Dec 5 13:01:58 PST 2025


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, main has been updated
       via  de9084960cfdbc621f4e544ff1c429253c86f39c (commit)
      from  36686663d0d3758f1068807733bd3a8d337d78af (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit de9084960cfdbc621f4e544ff1c429253c86f39c
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Fri Dec 5 13:01:35 2025 -0800

    Fix lower -> upper

diff --git a/src/util/string.cpp b/src/util/string.cpp
index f3712f58b..6657a09ee 100644
--- a/src/util/string.cpp
+++ b/src/util/string.cpp
@@ -61,7 +61,7 @@ void toUpper(std::string& s)
         s.end(),
         s.begin(),
         [](unsigned char c) {
-            return (char)std::tolower(c);
+            return (char)std::toupper(c);
         }
     );
 }

-----------------------------------------------------------------------

Summary of changes:
 src/util/string.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list