Merge branch '21378' of http://github.com/Zvork/hifi into fadeedit

This commit is contained in:
Olivier Prat 2017-07-03 17:18:19 +02:00
commit 36f8f682b3

View file

@ -286,7 +286,7 @@ public:
VaryingArray(std::initializer_list<Varying> list) {
assert(list.size() == NUM);
std::copy(list.begin(), list.end(), begin());
std::copy(list.begin(), list.end(), std::array<Varying, NUM>::begin());
}
};
}