Discussion:
[omniORB] omniidl bug: typecode as a member in valuetype
JiangWei
2006-06-14 06:23:37 UTC
Permalink
valuetype TestValue
{
public CORBA::TypeCode tc;
};

[***@dell omni]$ omniidl -bcxx MyValue.idl
[***@dell omni]$ g++ -c MyValueSK.cc
MyValueSK.cc: In member function 'virtual CORBA::TypeCode*
OBV_TestValue::tc() const':
MyValueSK.cc:184: error: 'const class CORBA::TypeCode_member' has no
member named 'in'
Duncan Grisby
2006-06-14 20:55:14 UTC
Permalink
Post by JiangWei
valuetype TestValue
{
public CORBA::TypeCode tc;
};
MyValueSK.cc: In member function 'virtual CORBA::TypeCode*
MyValueSK.cc:184: error: 'const class CORBA::TypeCode_member' has no
member named 'in'
Thanks for the bug reports. I've fixed this one and the one with the
nested struct, in CVS.

Do you actually have IDL that uses all these things, or are you just
doing some testing?

Cheers,

Duncan.
--
-- Duncan Grisby --
-- ***@grisby.org --
-- http://www.grisby.org --
JiangWei
2006-06-15 05:40:25 UTC
Permalink
Post by Duncan Grisby
=20
Post by JiangWei
valuetype TestValue
{
public CORBA::TypeCode tc;
};
MyValueSK.cc: In member function 'virtual CORBA::TypeCode*
MyValueSK.cc:184: error: 'const class CORBA::TypeCode_member' has no
member named 'in'
=20
Thanks for the bug reports. I've fixed this one and the one with the
nested struct, in CVS.
Do you actually have IDL that uses all these things, or are you just
doing some testing?
=20
I'm porting my server from TAO(1.5.1) to omniORB (4.1.0b2) . all these
things in my idl.
Post by Duncan Grisby
Cheers,
Duncan.
=20
Loading...