From: wentasah Date: Wed, 20 May 2009 12:20:57 +0000 (+0000) Subject: CORBA_char redefined to char X-Git-Tag: v0.3.3~29 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/orte.git/commitdiff_plain/6abf96fbf241c2895b0ed3c136b9f55a4b046fcd CORBA_char redefined to char This is to avoid signedness warnings when using str* functions. --- 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;