From 6c8e3e10a2919b4da754d0f3db54b3c616e1dd56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20S=2E=20Ga=C3=9Fmann?= Date: Wed, 14 Sep 2022 12:25:22 +0200 Subject: [PATCH] Make issue0102 test C++14 compliant - Replace `std::byte` with `unsigned char`. --- test/tests/issue0102.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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().allocate(llfio::utils::page_size()); + auto page = llfio::utils::page_allocator().allocate(llfio::utils::page_size()); llfio::file_io_error ioError = llfio::generic_error(llfio::errc::state_not_recoverable);