aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/asio
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-16 10:28:28 +0100
committerGitHub Enterprise <[email protected]>2026-03-16 10:28:28 +0100
commit252b98eaf76cc3e702b8e9fc0e3a835af5d7b33e (patch)
tree71e60a1a5b2a50c8cb305b2e259b4fb83dcd57d9 /thirdparty/asio
parentURI decoding, process env, compiler info, httpasio strands, regex route remov... (diff)
downloadzen-252b98eaf76cc3e702b8e9fc0e3a835af5d7b33e.tar.xz
zen-252b98eaf76cc3e702b8e9fc0e3a835af5d7b33e.zip
Linux build improvements (#843)
- **Sentry crashpad patch**: Make static libc++ linking conditional on `-stdlib=libc++` being active, so the patch doesn't break gcc or system clang builds that use libstdc++ - **GCC warning fix**: Suppress `-Wunused-but-set-variable` for gcc (false positive with `constinit` static locals passed by reference) - **ASIO typo fix**: `ASIO_STANDLONE` → `ASIO_STANDALONE` - **Toolchain verification script**: `scripts/ue_build_linux/verify_linux_toolchains.sh` for testing builds across gcc, ue-clang, clang-19 and clang-20
Diffstat (limited to 'thirdparty/asio')
-rw-r--r--thirdparty/asio/asio/include/asio/detail/io_uring_service.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/asio/asio/include/asio/detail/io_uring_service.hpp b/thirdparty/asio/asio/include/asio/detail/io_uring_service.hpp
index 7cc6cc51b..f76ac953a 100644
--- a/thirdparty/asio/asio/include/asio/detail/io_uring_service.hpp
+++ b/thirdparty/asio/asio/include/asio/detail/io_uring_service.hpp
@@ -50,7 +50,7 @@ private:
public:
enum op_types { read_op = 0, write_op = 1, except_op = 2, max_ops = 3 };
- class io_object;
+ struct io_object;
// An I/O queue stores operations that must run serially.
class io_queue : operation