mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-23 19:52:09 +00:00
Fix compilation on GCC 14.1.1
Apparantly some internal gcc header removed algorithm inclusion, so it broke the build. Fixes: https://github.com/scorpion-26/gBar/issues/94
This commit is contained in:
parent
89585255fd
commit
81b97f94b6
2 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include <atomic>
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <optional>
|
||||
#include <thread>
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <gio/gio.h>
|
||||
#include <libdbusmenu-gtk/menu.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
#include <filesystem>
|
||||
#include <unordered_set>
|
||||
|
|
Loading…
Reference in a new issue