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:
Lynix 2015-04-05 16:19:45 +02:00
parent 6a99b38be1
commit 8421a543fb
1 changed files with 2 additions and 2 deletions

View File

@ -22,12 +22,12 @@ namespace Ndk
template<typename ComponentType> template<typename ComponentType>
constexpr ComponentIndex GetComponentIndex() constexpr ComponentIndex GetComponentIndex()
{ {
return ComponentType::ComponentIndex; return ComponentType::componentIndex;
} }
template<typename SystemType> template<typename SystemType>
constexpr SystemIndex GetSystemIndex() constexpr SystemIndex GetSystemIndex()
{ {
return SystemType::SystemIndex; return SystemType::systemIndex;
} }
} }