msvc: remove warning disables which no longer fire

This commit is contained in:
Shawn Hoffman 2021-07-17 18:24:36 -07:00
commit c89ae53677
4 changed files with 3 additions and 29 deletions

View file

@ -49,11 +49,6 @@
#include <unistd.h> // for unlink()
#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4310)
#endif
namespace Common
{
// Believe me, you *don't* want to change these constants !!
@ -288,7 +283,3 @@ FailWrite:
return false;
}
} // namespace Common
#ifdef _MSC_VER
#pragma warning(pop)
#endif