Skip to content

Commit

Permalink
Make issue0102 test C++14 compliant
Browse files Browse the repository at this point in the history
- Replace `std::byte` with `unsigned char`.
  • Loading branch information
BurningEnlightenment committed Sep 14, 2022
1 parent 8a92bd8 commit 6c8e3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tests/issue0102.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 6c8e3e1

Please sign in to comment.