Commit 33efd78
committed
test: do not use mempcpy in BufferGPerfTest
Function `mempcpy` is a GNU extension and is not available on some
platforms like MacOS. And, actually, `mempcpy` is the same as `memcpy`,
the only difference is returned value, and it's not even used in the code
that calls the function. So let's simply replace it with `memcpy`.1 parent 0979e94 commit 33efd78
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
| 74 | + | |
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
0 commit comments