Disable unreachable warning in Boxed_Value too

This commit is contained in:
Jason Turner 2026-04-28 19:08:18 -06:00
parent fbc871bd14
commit 63d24c554f

View File

@ -41,7 +41,7 @@ namespace chaiscript {
// this is OK, so we're disabling size/and sign type warnings
#ifdef CHAISCRIPT_MSVC
#pragma warning(push)
#pragma warning(disable : 4244 4018 4389 4146 4365 4267 4242)
#pragma warning(disable : 4244 4018 4389 4146 4365 4267 4242 4702) // 4702 is for broken unreachable warning
#endif
#ifdef __GNUC__