Changed component index variable name
From CamelCase to camelCase (since I use camelCase for the variables) Former-commit-id: 3382295dda75378e40835c23040bd2738736a210
This commit is contained in:
parent
6a99b38be1
commit
8421a543fb
|
|
@ -22,12 +22,12 @@ namespace Ndk
|
|||
template<typename ComponentType>
|
||||
constexpr ComponentIndex GetComponentIndex()
|
||||
{
|
||||
return ComponentType::ComponentIndex;
|
||||
return ComponentType::componentIndex;
|
||||
}
|
||||
|
||||
template<typename SystemType>
|
||||
constexpr SystemIndex GetSystemIndex()
|
||||
{
|
||||
return SystemType::SystemIndex;
|
||||
return SystemType::systemIndex;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue