[omniORB] omniORB 2.7.0 is released!

Martin Renner Martin.Renner@pp-ulm.de
Fri, 22 Jan 1999 10:25:46 +0100


Hi.

I just tried to switch from 2.6.1 to 2.7.0 (Windows NT 4.0, MSVC 5.0). Now,
I get a warning message for each of my object implementations:

omniORB2\include\omniORB2/bufferedStream.h(621) : warning C4800: 'unsigned
char' : variable is getting set to a boolean value ('true' or 'false')


bufferedStream.h looks like that:

616:  inline _CORBA_Char byteOrder() const {
617:    return pd_byte_order;
618:  }
619:
620:  inline void byteOrder(_CORBA_Char b) {
621:    pd_byte_order = b;
622:  }

692:  _CORBA_Boolean   pd_byte_order;

"_CORBA_Char vs. _CORBA_Boolean" (or "unsigned char" vs. "bool" on my
platform).


Martin