1
0
mirror of https://github.com/uowuo/abaddon.git synced 2025-03-04 03:03:16 -05:00

Include recommended glibc header instead of internal one

Starting with glibc-2.32, you only include top level headers, otherwise
it cause an error.
https://docs.gtk.org/glib/compiling.html
This commit is contained in:
Takuya Wakazono 2024-11-02 00:06:08 +09:00
parent 31d9b19a4c
commit 3494ddcae0

View File

@ -11,7 +11,7 @@
#include <regex>
#include <mutex>
#include <condition_variable>
#include <glibconfig.h>
#include <glib.h>
#include <optional>
#include <type_traits>