]> rtime.felk.cvut.cz Git - orte.git/commitdiff
CORBA_char redefined to char
authorwentasah <wentasah>
Wed, 20 May 2009 12:20:57 +0000 (12:20 +0000)
committerwentasah <wentasah>
Wed, 20 May 2009 12:20:57 +0000 (12:20 +0000)
This is to avoid signedness warnings when using str* functions.

orte/include/orte/basic_types.h

index 64d58bcfe205825ed9db177fd357a0bf8611975d..61449e3aa7f0209ca1ecc73ec722c62d3931a519 100644 (file)
@@ -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;