dncurrency/nano/boost/beast.hpp
Wesley Shillingford f8158fc03c
Remove compiler warnings (incl from third party headers) (#2072)
* Remove compiler warnings

* Fix new warnings in test

* Remove new msvc warnings
2019-07-12 17:28:21 +01:00

13 lines
192 B
C++

#pragma once
#ifdef _WIN32
#pragma warning(push)
#pragma warning(disable : 4191)
#pragma warning(disable : 4242)
#endif
#include <boost/beast.hpp>
#ifdef _WIN32
#pragma warning(pop)
#endif