From 1f24dd8b9014560ce0e740b862f6e687a963493e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 18 Nov 2024 16:04:06 +0100 Subject: [PATCH] Add missing stdexcept include The issue was masked by it getting included by the TLS headers. But if GnuTLS was disabled, then this file would fail to build. --- common/rfb/SecurityClient.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/rfb/SecurityClient.cxx b/common/rfb/SecurityClient.cxx index 878edde9..027d47df 100644 --- a/common/rfb/SecurityClient.cxx +++ b/common/rfb/SecurityClient.cxx @@ -22,6 +22,9 @@ #endif #include + +#include + #include #include #include -- 2.39.5