From 432e19df013d0227b30e987119d93aba32b24aee Mon Sep 17 00:00:00 2001
From: patrick96
Date: Sat, 11 Nov 2023 03:54:18 +0100
Subject: [PATCH] build: Add missing headers in common.hpp
---
CHANGELOG.md | 3 +++
include/common.hpp | 2 ++
2 files changed, 5 insertions(+)
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"