From f192b22e48f60098ddb91e080b92512b2d94fd38 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 27 Mar 2024 11:59:27 +0100 Subject: [PATCH] compat: Fix comptability check in webrtc node-type Signed-off-by: Steffen Vogel --- include/villas/nodes/webrtc/peer_connection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/villas/nodes/webrtc/peer_connection.hpp b/include/villas/nodes/webrtc/peer_connection.hpp index 96dd6266f..06f7e0936 100644 --- a/include/villas/nodes/webrtc/peer_connection.hpp +++ b/include/villas/nodes/webrtc/peer_connection.hpp @@ -34,7 +34,7 @@ * * Since libdatachannel 0.20, operator<< has been moved into the rtc namespace. */ -#if RTC_VERSION <= 0x001400 +#if RTC_VERSION < 0x001400 namespace rtc { using ::operator<<; }