Skip to content

Commit 1aee6a5

Browse files
committed
Fix build (#8)
Signed-off-by: vityaman <vityaman.dev@yandex.ru>
1 parent c631283 commit 1aee6a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lab/vtpc/test/lib/cmp_file.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ auto cmp_file::read(char* buffer, size_t count) -> void {
5656
if (lhs != rhs) {
5757
throw vt::cmp_file_exception() << "'" << lhs << "' != '" << rhs << "'";
5858
}
59-
std::memcpy(buffer, lhs.data(), count);
59+
memcpy(buffer, lhs.data(), count);
6060
}
6161

6262
auto cmp_file::write(const char* buffer, size_t count) -> void {

0 commit comments

Comments
 (0)