1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-08 23:24:20 +00:00
This commit is contained in:
neargye 2025-06-11 20:49:11 +04:00
parent aa724339dc
commit 513e606d7b

View file

@ -7,11 +7,11 @@ module;
export module magic_enum;
#ifdef MAGIC_ENUM_USE_STD_MODULE
#if defined(MAGIC_ENUM_USE_STD_MODULE)
import std;
extern "C++" {
#ifdef __clang__
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winclude-angled-in-module-purview"
#elif defined(_MSC_VER)
@ -21,7 +21,7 @@ extern "C++" {
#include <magic_enum/magic_enum_all.hpp>
#ifdef __clang__
#if defined(__clang__)
#pragma clang diagnostic pop
#elif defined(_MSC_VER)
#pragma warning(pop)