Core: Work around GCC bug

This commit is contained in:
TellowKrinkle 2024-03-17 19:05:16 -05:00 committed by lightningterror
parent 5271e83824
commit 82bd9bbd6c
1 changed files with 3 additions and 1 deletions

View File

@ -41,5 +41,7 @@
#include <sys/stat.h> #include <sys/stat.h>
// We use fmt a fair bit now. // We use fmt a fair bit now.
// fmt pch breaks GCC in debug builds: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114370
#if !defined(__GNUC__) || defined(__clang__)
#include "fmt/core.h" #include "fmt/core.h"
#endif