-first draft of BinSearchArrayMap

This commit is contained in:
Metehan Tuncbilek
2024-09-23 17:00:07 +03:00
parent f8326a5686
commit 02d84af907
3 changed files with 6 additions and 7 deletions

View File

@@ -95,7 +95,6 @@ TEST_CASE("MemMappedFileWrite")
OpenVulkano::MemMappedFileWriteHelper::USE_CURRENT_FILE_SIZE);
REQUIRE(helper.Data() != nullptr);
std::string testData((char*) helper.Data());
printf("size: %llu", helper.Size());
helper.Close();
std::ifstream file(path, std::ios::binary);
@@ -112,8 +111,6 @@ TEST_CASE("MemMappedFileWrite")
}
REQUIRE(streamData.size() == testData.size());
printf("helper size: %llu\n", helper.Size());
}
SECTION("Actual Size")