Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ned14/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik S. Gaßmann <henrik@gassmann.onl>2022-09-14 13:25:22 +0300
committerHenrik S. Gaßmann <henrik@gassmann.onl>2022-09-14 13:25:22 +0300
commit6c8e3e10a2919b4da754d0f3db54b3c616e1dd56 (patch)
treea3f3d95f8a7bfc00523c5952bd04bf62fa4ccfb3
parent8a92bd841c56e75427a2002c3db46c8c4f49e7df (diff)
- Replace `std::byte` with `unsigned char`.
-rw-r--r--test/tests/issue0102.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests/issue0102.cpp b/test/tests/issue0102.cpp
index 6da854fe..c308d0c1 100644
--- a/test/tests/issue0102.cpp
+++ b/test/tests/issue0102.cpp
@@ -32,7 +32,7 @@ static inline void TestIssue0102()
namespace llfio = LLFIO_V2_NAMESPACE;
namespace outcome_e = OUTCOME_V2_NAMESPACE::experimental;
- auto page = llfio::utils::page_allocator<std::byte>().allocate(llfio::utils::page_size());
+ auto page = llfio::utils::page_allocator<unsigned char>().allocate(llfio::utils::page_size());
llfio::file_io_error ioError = llfio::generic_error(llfio::errc::state_not_recoverable);