Skip to content

memmove and memchr are C APIs not C++ std namespace

Khem Raj requested to merge kraj/parallel-deqp-runner:master into master

Fixes build error ../git/src/deqp-runner.cc: In member function 'Line_reader::read_status Line_reader::read(char**, double)': ../git/src/deqp-runner.cc:249:10: error: 'memmove' is not a member of 'std'; did you mean 'wmemmove'? 249 | std::memmove(buf_.data(), buf_.data() + skip_sz_, valid_sz_); | ^~~~~~~ | wmemmove ../git/src/deqp-runner.cc:255:35: error: 'memchr' is not a member of 'std'; did you mean 'wmemchr'? 255 | while (!(newline = (char *)std::memchr(buf_.data(), '\n', valid_sz_)) && | ^~~~~~ | wmemchr

Signed-off-by: Khem Raj raj.khem@gmail.com

Merge request reports