Moved osgIntrospection across to standard OSG coding style.
This commit is contained in:
@@ -16,11 +16,11 @@
|
||||
|
||||
using namespace osgIntrospection;
|
||||
|
||||
void ConstructorInfo::getInheritedProviders(CustomAttributeProviderList &providers) const
|
||||
void ConstructorInfo::getInheritedProviders(CustomAttributeProviderList& providers) const
|
||||
{
|
||||
for (int i=0; i<decltype_.getNumBaseTypes(); ++i)
|
||||
for (int i=0; i<_decltype.getNumBaseTypes(); ++i)
|
||||
{
|
||||
const ConstructorInfo *ci = decltype_.getBaseType(i).getConstructor(params_);
|
||||
const ConstructorInfo* ci = _decltype.getBaseType(i).getConstructor(_params);
|
||||
if (ci)
|
||||
{
|
||||
providers.push_back(ci);
|
||||
|
||||
Reference in New Issue
Block a user