pam: add missing header for libc++ after a4b0562749 (#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
This commit is contained in:
Jan Beich 2024-12-18 19:10:01 +00:00 committed by GitHub
parent 058830668e
commit d12b4a7fba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,7 @@
#include <mutex> #include <mutex>
#include <condition_variable> #include <condition_variable>
#include <functional> #include <functional>
#include <thread>
class CPam : public IAuthImplementation { class CPam : public IAuthImplementation {
public: public: