No need to disable warnings in a newer VS C++ compiler

This commit is contained in:
Serge Lamikhov-Center 2022-02-02 23:28:01 +02:00
parent 48e78fe1b9
commit 0c841c7ed4

View File

@ -23,11 +23,6 @@ THE SOFTWARE.
#ifndef ELFIO_HPP
#define ELFIO_HPP
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 4996 )
#endif
#include <string>
#include <iostream>
#include <fstream>
@ -1050,8 +1045,4 @@ class elfio
#include <elfio/elfio_modinfo.hpp>
#include <elfio/elfio_versym.hpp>
#ifdef _MSC_VER
#pragma warning( pop )
#endif
#endif // ELFIO_HPP