Fixed incorrect implementation of etl::string::copy

This commit is contained in:
John Wellbelove 2016-06-28 20:24:57 +01:00
parent 879e9bad21
commit c9010a0573
2 changed files with 4 additions and 4 deletions

View File

@ -2053,8 +2053,8 @@ namespace
CHECK_EQUAL(length1, length2);
bool is_equal = std::equal(buffer1,
buffer1 + length1,
buffer2);
buffer1 + length1,
buffer2);
CHECK(is_equal);
}

View File

@ -2053,8 +2053,8 @@ namespace
CHECK_EQUAL(length1, length2);
bool is_equal = std::equal(buffer1,
buffer1 + length1,
buffer2);
buffer1 + length1,
buffer2);
CHECK(is_equal);
}