One Hat Cyber Team
Your IP :
216.73.217.36
Server IP :
162.240.179.46
Server :
Linux vps-14493116.nutrivittasaude.com.br 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
boost
/
endian
/
detail
/
Edit File:
disable_warnings.hpp
// disable_warnings.hpp --------------------------------------------------------------// // Copyright Beman Dawes 2011 // Distributed under the Boost Software License, Version 1.0. // See http://www.boost.org/LICENSE_1_0.txt //--------------------------------------------------------------------------------------// #ifdef _MSC_VER #ifndef _SCL_SECURE_NO_WARNINGS # define _SCL_SECURE_NO_WARNINGS #endif #ifndef _CRT_SECURE_NO_WARNINGS # define _CRT_SECURE_NO_WARNINGS #endif # pragma warning(push) // triggered by boost/detail/lightweight_test.hpp # pragma warning( disable : 4640 ) // ... construction of local static object is not thread-safe // triggered by Microsoft's own headers, so disable # pragma warning( disable : 4820 ) // padding added after data member # pragma warning( disable : 4548 ) // expression before comma has no effect # pragma warning( disable : 4668 ) // ... is not defined as a preprocessor macro # pragma warning( disable : 4514 ) // ... unreferenced inline function has been removed # pragma warning( disable : 4710 ) // ... function not inlined # pragma warning( disable : 4986 ) // ... exception specification does not match previous declaration # pragma warning( disable : 4711 ) // ... selected for automatic inline expansion #endif
Simpan