diff --git a/CHANGELOG.md b/CHANGELOG.md index 37016db9..d880c87e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Build +- Fixed missing header when using `libc++` in clang 15 and below + ### Changed - `internal/tray`: The module must use the `` tag (this is the default) ([`#3037`](https://github.com/polybar/polybar/pull/3037)) diff --git a/include/common.hpp b/include/common.hpp index 3e776f75..e6714c8f 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -1,9 +1,11 @@ #pragma once +#include #include #include #include #include +#include #include #include "settings.hpp"