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

git at osgeo.org git at osgeo.org
Tue Nov 14 14:42:04 PST 2023


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  f2530082233466dc5644e3c11c68817ebd26f81b (commit)
      from  fc15aa98f0822db0481ff16e5acef6ac9487ddbf (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 f2530082233466dc5644e3c11c68817ebd26f81b
Author: jMichaelA <jacob.m.adams at gmail.com>
Date:   Tue Nov 14 15:41:32 2023 -0700

    Added illumos macro for int8_t parse_value override. chars are signed in illumos implementation of stdint.h. (#971)

diff --git a/util/geosop/cxxopts.hpp b/util/geosop/cxxopts.hpp
index 6ec7998a1..1acfb88c2 100644
--- a/util/geosop/cxxopts.hpp
+++ b/util/geosop/cxxopts.hpp
@@ -677,12 +677,14 @@ namespace cxxopts
       integer_parser(text, value);
     }
 
+    #ifndef __illumos__
     inline
     void
     parse_value(const std::string& text, int8_t& value)
     {
       integer_parser(text, value);
     }
+    #endif
 
     inline
     void

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

Summary of changes:
 util/geosop/cxxopts.hpp | 2 ++
 1 file changed, 2 insertions(+)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list