html: ignore MSVC pragmas in GCC builds
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
2bfe310d47
commit
341073b587
@ -29,6 +29,11 @@
|
|||||||
#undef small
|
#undef small
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace stdex
|
namespace stdex
|
||||||
{
|
{
|
||||||
namespace html
|
namespace html
|
||||||
@ -2687,3 +2692,7 @@ namespace stdex
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user