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

Include <fmt/format.h> instead of <fmt/base.h>

This commit is contained in:
CrackedMatter 2025-02-28 15:29:44 +01:00 committed by GitHub
parent 18045d4643
commit a7459e49c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,8 +1,8 @@
module;
#include <version>
#if __has_include(<fmt/base.h>)
#include <fmt/base.h>
#if __has_include(<fmt/format.h>)
#include <fmt/format.h>
#endif
#ifndef MAGIC_ENUM_USE_STD_MODULE
#include <magic_enum/magic_enum_all.hpp>