KWIML 2026-04-02 (46f18e5a)

Code extracted from:

    https://gitlab.kitware.com/utils/kwiml.git

at commit 46f18e5a43eeedeaa8391eaf337b0a490644e913 (master).

Upstream Shortlog
-----------------

Serguei E. Leontiev (1):
      46f18e5a abi.h: Add char signedness for Pelles C compiler
This commit is contained in:
KWIML Upstream
2026-04-02 09:40:31 -04:00
committed by Brad King
parent b41743ddcb
commit 014bb6c154

View File

@@ -155,7 +155,7 @@ suppression macro KWIML_ABI_NO_VERIFY was defined.
#if !defined(KWIML_ABI_CHAR_IS_UNSIGNED) && !defined(KWIML_ABI_CHAR_IS_SIGNED)
# if defined(__CHAR_UNSIGNED__) /* GNU, some IBM XL, others? */
# define KWIML_ABI_CHAR_IS_UNSIGNED 1
# elif defined(_CHAR_UNSIGNED) /* Intel, IBM XL, MSVC, Borland, others? */
# elif defined(_CHAR_UNSIGNED) /* Intel, IBM XL, MSVC, Borland, Pelles C, others? */
# define KWIML_ABI_CHAR_IS_UNSIGNED 1
# elif defined(_CHAR_SIGNED) /* IBM XL, others? */
# define KWIML_ABI_CHAR_IS_SIGNED 1
@@ -177,6 +177,8 @@ suppression macro KWIML_ABI_NO_VERIFY was defined.
# define KWIML_ABI_CHAR_IS_UNSIGNED 1
# elif defined(__PGIC__) /* PGI default */
# define KWIML_ABI_CHAR_IS_SIGNED 1
# elif defined(__POCC__) /* PellesC default */
# define KWIML_ABI_CHAR_IS_SIGNED 1
# elif defined(_MSC_VER) /* MSVC default */
# define KWIML_ABI_CHAR_IS_SIGNED 1
# elif defined(__WATCOMC__) /* Watcom default */