Explicitly include headers for PCH free build (#312)

There are some headers that implicitly included by PCH. Include those
explicitly so PCH free build succeeds.
This commit is contained in:
pastalian
2024-06-16 05:47:48 +09:00
committed by GitHub
parent e6b4871df3
commit bc7c5f9ec3
5 changed files with 9 additions and 2 deletions

View File

@@ -7,6 +7,9 @@
#ifdef __APPLE__
#include <unistd.h>
#endif
#ifdef __linux__
#include "util.hpp"
#endif
#include <spdlog/spdlog.h>