Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: do not use memset in BufferPerfTest
The test uses arrays of std::tuple and its inheritants and clears them with memset. It is allowed only if the type has trivial copy constructor, and std::tuple has not. So let's implicitly initialize members of arrays with default value.
- Loading branch information