mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 10:43:21 +02:00
ubuntu build fix (remove std::memset ...)
This commit is contained in:
parent
e64c81420e
commit
76adb952a3
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ public:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
for (uint16_t i = 0; i < _channelCount; ++i) {
|
for (uint16_t i = 0; i < _channelCount; ++i) {
|
||||||
std::memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
|
memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue