[omniORB] Case sensitivity with the IDL compiler
Paul Brannan
pbrannan@atdesk.com
Tue, 13 Nov 2001 11:24:54 -0500 (EST)
I'm trying to get use a CORBA::Boolean in my idl files:
interface Foo
{
void bar(in Boolean b);
}
But I keep getting this error:
[pbrannan@zaphod test3]$ omniidl -bpython Test.idl
Test.idl:4: Error in look-up of `Boolean': `Boolean' not found
omniidl: 1 error.
However, if I do this:
interface Foo
{
void bar(in boolean b);
}
then all is well. Isn't IDL supposed to be case-insensitive?
Paul