mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 09:33:36 +02:00
ubuntu build fix (remove std::memset ...)
This commit is contained in:
parent
76adb952a3
commit
2700d8c59d
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public:
|
|||
}
|
||||
|
||||
void initialize() {
|
||||
std::memset(_rows, 0, _randomRows * sizeof(int32_t));
|
||||
memset(_rows, 0, _randomRows * sizeof(int32_t));
|
||||
|
||||
_runningSum = 0;
|
||||
_index = 0;
|
||||
|
|
Loading…
Reference in a new issue