recovered warninng supression pragmas

This commit is contained in:
joaquintides
2023-03-13 17:56:57 +01:00
committed by Christian Mazakas
parent 4ed301df97
commit 83040211e8

View File

@ -222,6 +222,11 @@ using table_core_impl=
#include <boost/unordered/detail/foa/ignore_wshadow.hpp>
#if defined(BOOST_MSVC)
#pragma warning(push)
#pragma warning(disable:4714) /* marked as __forceinline not inlined */
#endif
template<typename TypePolicy,typename Hash,typename Pred,typename Allocator>
class table:table_core_impl<TypePolicy,Hash,Pred,Allocator>
{
@ -505,6 +510,10 @@ private:
}
};
#if defined(BOOST_MSVC)
#pragma warning(pop) /* C4714 */
#endif
#include <boost/unordered/detail/foa/restore_wshadow.hpp>
} /* namespace foa */