mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 09:25:31 +02:00
Fixed compilation error on Mac and Linux
This commit is contained in:
parent
ec1cf9dc50
commit
972db8f54c
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue