From 6abf96fbf241c2895b0ed3c136b9f55a4b046fcd Mon Sep 17 00:00:00 2001 From: wentasah Date: Wed, 20 May 2009 12:20:57 +0000 Subject: [PATCH] CORBA_char redefined to char This is to avoid signedness warnings when using str* functions. --- orte/include/orte/basic_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/include/orte/basic_types.h b/orte/include/orte/basic_types.h index 64d58bc..61449e3 100644 --- a/orte/include/orte/basic_types.h +++ b/orte/include/orte/basic_types.h @@ -13,7 +13,7 @@ typedef uint16_t CORBA_unsigned_short; typedef uint32_t CORBA_unsigned_long; typedef float CORBA_float; typedef double CORBA_double; -typedef int8_t CORBA_char; +typedef char CORBA_char; typedef int16_t CORBA_wchar; typedef uint8_t CORBA_boolean; typedef uint8_t CORBA_octet; -- 2.39.2