From 16e725fd9619d25063c1942f28977c1727d8dc9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Mon, 16 Jan 2023 13:38:08 +0100 Subject: [PATCH] core: Add missing library in system-path.cc fixes error: use of undeclared identifier 'memset'; did you mean 'wmemset'? --- src/core/model/system-path.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/model/system-path.cc b/src/core/model/system-path.cc index e589a2365..b97735c93 100644 --- a/src/core/model/system-path.cc +++ b/src/core/model/system-path.cc @@ -61,6 +61,7 @@ namespace fs = std::experimental::filesystem; #endif #ifdef __linux__ +#include #include #endif