[ARM64] Suppress tomlcpusplus compile warnings

This commit is contained in:
Herman S.
2026-03-15 21:43:30 +09:00
parent fb6a67748f
commit b04cc23670
4 changed files with 28 additions and 0 deletions

View File

@@ -11,7 +11,14 @@
#define XENIA_CONFIG_H_
#include <filesystem>
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wabsolute-value"
#endif
#include "third_party/tomlplusplus/toml.hpp"
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
toml::parse_result ParseFile(const std::filesystem::path& filename);