ubuntu build fix (remove std::memset ...)

This commit is contained in:
Craig Hansen-Sturm 2014-09-06 03:57:11 -07:00
parent e64c81420e
commit 76adb952a3

View file

@ -96,7 +96,7 @@ public:
return;
}
for (uint16_t i = 0; i < _channelCount; ++i) {
std::memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
}
}