1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

Include <format>

This commit is contained in:
CrackedMatter 2025-02-28 15:37:40 +01:00 committed by GitHub
parent a7459e49c3
commit 978b1a81b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,6 +5,9 @@ module;
#include <fmt/format.h> #include <fmt/format.h>
#endif #endif
#ifndef MAGIC_ENUM_USE_STD_MODULE #ifndef MAGIC_ENUM_USE_STD_MODULE
#if defined(__cpp_lib_format)
#include <format>
#endif
#include <magic_enum/magic_enum_all.hpp> #include <magic_enum/magic_enum_all.hpp>
#endif #endif