]> granicus.if.org Git - nethack/commitdiff
remove an old #pragma from sp_lev.c that isn't actually accomplishing anything
authornhmall <nhmall@nethack.org>
Sat, 30 Jan 2021 16:25:27 +0000 (11:25 -0500)
committernhmall <nhmall@nethack.org>
Sat, 30 Jan 2021 16:25:27 +0000 (11:25 -0500)
src/sp_lev.c

index 130bdd9c3c3a1b8d21530a3ae4489199a7e876eb..12090fe945303ac1850ae7f02ca23cc02bb3e1ae 100755 (executable)
 #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*/