We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c631283 commit 1aee6a5Copy full SHA for 1aee6a5
1 file changed
lab/vtpc/test/lib/cmp_file.cpp
@@ -56,7 +56,7 @@ auto cmp_file::read(char* buffer, size_t count) -> void {
56
if (lhs != rhs) {
57
throw vt::cmp_file_exception() << "'" << lhs << "' != '" << rhs << "'";
58
}
59
- std::memcpy(buffer, lhs.data(), count);
+ memcpy(buffer, lhs.data(), count);
60
61
62
auto cmp_file::write(const char* buffer, size_t count) -> void {
0 commit comments