mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 19:37:14 +02:00
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>
|
||||
|
||||
#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 */
|
||||
|
Reference in New Issue
Block a user