forked from boostorg/unordered
recovered warninng supression pragmas
This commit is contained in:
committed by
Christian Mazakas
parent
4ed301df97
commit
83040211e8
@@ -222,6 +222,11 @@ using table_core_impl=
|
|||||||
|
|
||||||
#include <boost/unordered/detail/foa/ignore_wshadow.hpp>
|
#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>
|
template<typename TypePolicy,typename Hash,typename Pred,typename Allocator>
|
||||||
class table:table_core_impl<TypePolicy,Hash,Pred,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>
|
#include <boost/unordered/detail/foa/restore_wshadow.hpp>
|
||||||
|
|
||||||
} /* namespace foa */
|
} /* namespace foa */
|
||||||
|
Reference in New Issue
Block a user