fix(sway): add missing includes for GCC 13

See also: https://gcc.gnu.org/gcc-13/porting_to.html
This commit is contained in:
Aleksei Bavshin 2023-01-16 10:27:21 -08:00
parent bc07a82579
commit ca9d237b00
No known key found for this signature in database
GPG Key ID: 4F071603387A382A
2 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <cstring>
#include <memory>
#include <mutex>
#include <string>
#include "ipc.hpp"
#include "util/sleeper_thread.hpp"

View File

@ -2,6 +2,8 @@
#include <fcntl.h>
#include <stdexcept>
namespace waybar::modules::sway {
Ipc::Ipc() {