From 02b72dbbb0db55c6eca986250ce51db23ead16cd Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 19 Oct 2023 09:38:37 -0500 Subject: [PATCH] bugfix: TCP server does not require multi-threaded environment --- core/net/tcp.onyx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/net/tcp.onyx b/core/net/tcp.onyx index 7393ec61..967c8487 100644 --- a/core/net/tcp.onyx +++ b/core/net/tcp.onyx @@ -12,10 +12,6 @@ use core.os use core.iter use runtime -#if !runtime.Multi_Threading_Enabled { - #error "Expected multi-threading to be enabled for TCP server."; -} - // Should TCP_Connection be an abstraction of both the client and the server? // Or is there not enough shared between them to justify that? TCP_Connection :: struct { -- 2.25.1