You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libksysguard/de755097bd99999553f777a8ecf...

26 lines
777 B

From de755097bd99999553f777a8ecfdc53e8ec705c9 Mon Sep 17 00:00:00 2001
From: Fabian Vogt <fabian@ritter-vogt.de>
Date: Mon, 17 Jan 2022 16:12:41 +0100
Subject: [PATCH] Fix build with GCC 12, missing include
std::memcpy needs #include <cstring>
---
processcore/plugins/network/helper/ConnectionMapping.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/processcore/plugins/network/helper/ConnectionMapping.cpp b/processcore/plugins/network/helper/ConnectionMapping.cpp
index 3825b99..4bd5b64 100644
--- a/processcore/plugins/network/helper/ConnectionMapping.cpp
+++ b/processcore/plugins/network/helper/ConnectionMapping.cpp
@@ -7,6 +7,7 @@
#include "ConnectionMapping.h"
+#include <cstring>
#include <charconv>
#include <fstream>
#include <iostream>
--
GitLab