From: nhmall Date: Sat, 30 Jan 2021 16:25:27 +0000 (-0500) Subject: remove an old #pragma from sp_lev.c that isn't actually accomplishing anything X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e5df4f6b96ac8351bb1be4f8246dcaff3afc45e;p=nethack remove an old #pragma from sp_lev.c that isn't actually accomplishing anything --- diff --git a/src/sp_lev.c b/src/sp_lev.c index 130bdd9c3..12090fe94 100755 --- a/src/sp_lev.c +++ b/src/sp_lev.c @@ -14,11 +14,6 @@ #include "hack.h" #include "sp_lev.h" -#ifdef _MSC_VER - #pragma warning(push) - #pragma warning(disable : 4244) -#endif - typedef void (*select_iter_func)(int, int, genericptr); extern void mkmap(lev_init *); @@ -6252,8 +6247,4 @@ load_special(const char *name) return result; } -#ifdef _MSC_VER - #pragma warning(pop) -#endif - /*sp_lev.c*/