From 91b5c8a07c6c99d58875d5d86a6c8ee858b462ed Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 4 Jul 2026 19:34:35 +0100 Subject: [PATCH] refactor: Remove FreeBSD-specific workaround The bug has been fixed upstream for in supported FreeBSD releases: - 15.x: commit 4261507a5e3e73ef6f9535935d22785056954b19 - 14.x: commit 4fa4e6a3c80eb3a4f34877fcff60016e93e4be9d --- src/common/netif.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/netif.cpp b/src/common/netif.cpp index af69b8d13a1..489ed900cce 100644 --- a/src/common/netif.cpp +++ b/src/common/netif.cpp @@ -17,8 +17,6 @@ #elif defined(__FreeBSD__) #include #if __FreeBSD_version >= 1400000 -// Workaround https://github.com/freebsd/freebsd-src/pull/1070. -#define typeof __typeof #include #include #endif