diff options
| author | Stefan Boberg <[email protected]> | 2023-12-19 10:55:11 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-19 10:55:11 +0100 |
| commit | 7451d3ab8aa7be6405b6bbbe5e17dcb3ea29e766 (patch) | |
| tree | 67b166d09365c45c43d7d446a6f0816c1428274b /src/zenhttp/httpshared.cpp | |
| parent | various TSAN/ASAN/LeakAnalyzer fixes (#622) (diff) | |
| download | zen-7451d3ab8aa7be6405b6bbbe5e17dcb3ea29e766.tar.xz zen-7451d3ab8aa7be6405b6bbbe5e17dcb3ea29e766.zip | |
ensure we can build without trace (#619)
`xmake config -zentrace=n` would previously not build cleanly
Diffstat (limited to 'src/zenhttp/httpshared.cpp')
| -rw-r--r-- | src/zenhttp/httpshared.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zenhttp/httpshared.cpp b/src/zenhttp/httpshared.cpp index 5421fcba5..ca014bf1c 100644 --- a/src/zenhttp/httpshared.cpp +++ b/src/zenhttp/httpshared.cpp @@ -19,6 +19,10 @@ #include <span> #include <vector> +#if ZEN_PLATFORM_WINDOWS +# include <zencore/windows.h> +#endif + ZEN_THIRD_PARTY_INCLUDES_START #include <tsl/robin_map.h> ZEN_THIRD_PARTY_INCLUDES_END |