From d12b4a7fbaf570fbe9322c09a777c124fbf15306 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Wed, 18 Dec 2024 19:10:01 +0000 Subject: [PATCH] pam: add missing header for libc++ after a4b056274963 (#589) In file included from src/auth/Auth.cpp:2: src/auth/Pam.hpp:43:5: error: no type named 'thread' in namespace 'std'; did you mean 'pthread'? 43 | std::thread m_thread; | ^~~~~~~~~~~ | pthread --- src/auth/Pam.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/Pam.hpp b/src/auth/Pam.hpp index 7e45586..831fbf2 100644 --- a/src/auth/Pam.hpp +++ b/src/auth/Pam.hpp @@ -7,6 +7,7 @@ #include #include #include +#include class CPam : public IAuthImplementation { public: