aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2024-11-18 16:04:06 +0100
committerPierre Ossman <ossman@cendio.se>2024-11-18 16:04:06 +0100
commit1f24dd8b9014560ce0e740b862f6e687a963493e (patch)
tree7d33d39e162f3f78bd38bca0dd5792131dc80485
parent581698685b9cc3155aed5f5c6c1b293dee44144a (diff)
downloadtigervnc-1f24dd8b9014560ce0e740b862f6e687a963493e.tar.gz
tigervnc-1f24dd8b9014560ce0e740b862f6e687a963493e.zip
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.
-rw-r--r--common/rfb/SecurityClient.cxx3
1 files changed, 3 insertions, 0 deletions
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 <assert.h>
+
+#include <stdexcept>
+
#include <rfb/CSecurityNone.h>
#include <rfb/CSecurityStack.h>
#include <rfb/CSecurityVeNCrypt.h>