From 8421a543fb6abecbb7fdfb490692b157cb937404 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 5 Apr 2015 16:19:45 +0200 Subject: [PATCH] Changed component index variable name From CamelCase to camelCase (since I use camelCase for the variables) Former-commit-id: 3382295dda75378e40835c23040bd2738736a210 --- SDK/include/NDK/Algorithm.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDK/include/NDK/Algorithm.inl b/SDK/include/NDK/Algorithm.inl index f07825e8d..f609af717 100644 --- a/SDK/include/NDK/Algorithm.inl +++ b/SDK/include/NDK/Algorithm.inl @@ -22,12 +22,12 @@ namespace Ndk template constexpr ComponentIndex GetComponentIndex() { - return ComponentType::ComponentIndex; + return ComponentType::componentIndex; } template constexpr SystemIndex GetSystemIndex() { - return SystemType::SystemIndex; + return SystemType::systemIndex; } }