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:
authorNiall Douglas <s_github@nedprod.com>2022-08-11 23:27:11 +0300
committerNiall Douglas <s_github@nedprod.com>2022-08-11 23:27:11 +0300
commit78ffd9011dfc053c4034531f4ba8c7d279da80ae (patch)
tree578fd410b3940a523a8a534b353d37c86c180f24
parentcea5ea3719fbf08a8b146f98447b1636e34259ae (diff)
Update LLFIO to match latest Outcome changes.
-rw-r--r--include/llfio/v2.0/detail/impl/posix/byte_socket_handle.ipp2
-rw-r--r--include/llfio/v2.0/status_code.hpp2
-rw-r--r--test/test_kernel_decl.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/llfio/v2.0/detail/impl/posix/byte_socket_handle.ipp b/include/llfio/v2.0/detail/impl/posix/byte_socket_handle.ipp
index d0cd604f..25c5bcd3 100644
--- a/include/llfio/v2.0/detail/impl/posix/byte_socket_handle.ipp
+++ b/include/llfio/v2.0/detail/impl/posix/byte_socket_handle.ipp
@@ -26,7 +26,7 @@ Distributed under the Boost Software License, Version 1.0.
#include "import.hpp"
#if LLFIO_EXPERIMENTAL_STATUS_CODE
-#include "outcome/experimental/status-code/include/getaddrinfo_code.hpp"
+#include "outcome/experimental/status-code/include/status-code/getaddrinfo_code.hpp"
#else
#include "../getaddrinfo_category.hpp"
#endif
diff --git a/include/llfio/v2.0/status_code.hpp b/include/llfio/v2.0/status_code.hpp
index 03eb0f67..cdd04a98 100644
--- a/include/llfio/v2.0/status_code.hpp
+++ b/include/llfio/v2.0/status_code.hpp
@@ -57,7 +57,7 @@ as that (a) enables safe header only LLFIO on Windows (b) produces better codege
#include "outcome/try.hpp"
// Bring in status code utility
#include "outcome/experimental/coroutine_support.hpp"
-#include "outcome/experimental/status-code/include/system_code_from_exception.hpp"
+#include "outcome/experimental/status-code/include/status-code/system_code_from_exception.hpp"
#if !defined(LLFIO_ENABLE_COROUTINES) && defined(OUTCOME_FOUND_COROUTINE_HEADER)
#define LLFIO_ENABLE_COROUTINES 1
#endif
diff --git a/test/test_kernel_decl.hpp b/test/test_kernel_decl.hpp
index 07aa7957..3bd810cf 100644
--- a/test/test_kernel_decl.hpp
+++ b/test/test_kernel_decl.hpp
@@ -38,7 +38,7 @@ Distributed under the Boost Software License, Version 1.0.
#if LLFIO_EXPERIMENTAL_STATUS_CODE
#define KERNELTEST_EXPERIMENTAL_STATUS_CODE 1
-#include "outcome/experimental/status-code/include/iostream_support.hpp"
+#include "outcome/experimental/status-code/include/status-code/iostream_support.hpp"
// Used for initialiser list stored results as the erased form is move-only
template <class T> using il_result = OUTCOME_V2_NAMESPACE::experimental::status_result<T, SYSTEM_ERROR2_NAMESPACE::generic_code>;