From Mike Wittman, "These changes add support for reflection of reference and const reference type representations via osgIntrospection::Type. This covers just the static type information; the dynamic behavior via Type::createInstance/Type::InvokeMethod should not be affected."
This commit is contained in:
@@ -66,7 +66,7 @@ void print_types()
|
||||
for (TypeList::const_iterator i=types.begin(); i!=types.end(); ++i)
|
||||
{
|
||||
// ignore pointer types and undefined types
|
||||
if (!(*i)->isDefined() || (*i)->isPointer())
|
||||
if (!(*i)->isDefined() || (*i)->isPointer() || (*i)->isReference())
|
||||
continue;
|
||||
|
||||
// print the type name
|
||||
|
||||
Reference in New Issue
Block a user