mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-09 23:14:04 +00:00
suppressed spurious warning
[SVN r85100]
This commit is contained in:
parent
72410dc3c6
commit
83a3b450ae
@ -76,6 +76,11 @@ namespace boost{
|
||||
|
||||
namespace multi_index{
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC,BOOST_TESTED_AT(1500))
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable:4522) /* spurious warning on multiple operator=()'s */
|
||||
#endif
|
||||
|
||||
template<typename Value,typename IndexSpecifierList,typename Allocator>
|
||||
class multi_index_container:
|
||||
private ::boost::base_from_member<
|
||||
@ -1031,6 +1036,10 @@ private:
|
||||
#endif
|
||||
};
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC,BOOST_TESTED_AT(1500))
|
||||
#pragma warning(pop) /* C4522 */
|
||||
#endif
|
||||
|
||||
/* retrieval of indices by number */
|
||||
|
||||
template<typename MultiIndexContainer,int N>
|
||||
|
Loading…
x
Reference in New Issue
Block a user