diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/outcome/fix-status-code-path.patch | |
Diffstat (limited to 'vcpkg/ports/outcome/fix-status-code-path.patch')
| -rw-r--r-- | vcpkg/ports/outcome/fix-status-code-path.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vcpkg/ports/outcome/fix-status-code-path.patch b/vcpkg/ports/outcome/fix-status-code-path.patch new file mode 100644 index 0000000..755966d --- /dev/null +++ b/vcpkg/ports/outcome/fix-status-code-path.patch @@ -0,0 +1,23 @@ +diff --git a/include/outcome/experimental/result.h b/include/outcome/experimental/result.h +index b912a55..1370e9e 100644 +--- a/include/outcome/experimental/result.h ++++ b/include/outcome/experimental/result.h +@@ -278,14 +278,14 @@ extern "C" + } + + #include "../config.hpp" +-#include "status-code/include/status-code/config.hpp" +-#include "status-code/include/status-code/system_code.hpp" ++#include <status-code/config.hpp> ++#include <status-code/system_code.hpp> + #include "status_result.hpp" + + +-#include "status-code/include/status-code/posix_code.hpp" ++#include <status-code/posix_code.hpp> + #ifdef _WIN32 +-#include "status-code/include/status-code/win32_code.hpp" ++#include <status-code/win32_code.hpp> + #endif + + #include <algorithm> |