[*] Style. Intermediate commit.

pull/972/head
Alexandr Arutjunov 2016-08-08 19:07:30 +03:00
parent a6ec0e4c7a
commit 41ed74beb6
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* /*
Open Asset Import Library (assimp) Open Asset Import Library (assimp)
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -56,7 +56,7 @@ namespace glTF {
inline Value& MakeValue(Value& val, float(&r)[N], MemoryPoolAllocator<>& al) { inline Value& MakeValue(Value& val, float(&r)[N], MemoryPoolAllocator<>& al) {
val.SetArray(); val.SetArray();
val.Reserve(N, al); val.Reserve(N, al);
for (int i = 0; i < N; ++i) { for (decltype(N) i = 0; i < N; ++i) {
val.PushBack(r[i], al); val.PushBack(r[i], al);
} }
return val; return val;