mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-11 05:14:05 +00:00
qualified a symbol causing ambiguity problems in Compaq C++ for Tru64 Unix
[SVN r24671]
This commit is contained in:
parent
44dd6da9ad
commit
a143eaa27c
@ -614,7 +614,7 @@ struct index
|
||||
template<
|
||||
typename Tag,typename Value,typename IndexSpecifierList,typename Allocator
|
||||
>
|
||||
typename index<
|
||||
typename ::boost::multi_index::index<
|
||||
multi_index_container<Value,IndexSpecifierList,Allocator>,Tag>::type&
|
||||
get(
|
||||
multi_index_container<Value,IndexSpecifierList,Allocator>& m
|
||||
@ -622,7 +622,7 @@ get(
|
||||
{
|
||||
typedef multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator> multi_index_type;
|
||||
typedef typename index<
|
||||
typedef typename ::boost::multi_index::index<
|
||||
multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator>,
|
||||
Tag
|
||||
@ -634,7 +634,7 @@ get(
|
||||
template<
|
||||
typename Tag,typename Value,typename IndexSpecifierList,typename Allocator
|
||||
>
|
||||
const typename index<
|
||||
const typename ::boost::multi_index::index<
|
||||
multi_index_container<Value,IndexSpecifierList,Allocator>,Tag>::type&
|
||||
get(
|
||||
const multi_index_container<Value,IndexSpecifierList,Allocator>& m
|
||||
@ -642,7 +642,7 @@ get(
|
||||
{
|
||||
typedef multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator> multi_index_type;
|
||||
typedef typename index<
|
||||
typedef typename ::boost::multi_index::index<
|
||||
multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator>,
|
||||
Tag
|
||||
@ -746,13 +746,15 @@ project(
|
||||
template<typename MultiIndexContainer,typename Tag>
|
||||
struct index_iterator
|
||||
{
|
||||
typedef typename index<MultiIndexContainer,Tag>::type::iterator type;
|
||||
typedef typename ::boost::multi_index::index<
|
||||
MultiIndexContainer,Tag>::type::iterator type;
|
||||
};
|
||||
|
||||
template<typename MultiIndexContainer,typename Tag>
|
||||
struct index_const_iterator
|
||||
{
|
||||
typedef typename index<MultiIndexContainer,Tag>::type::const_iterator type;
|
||||
typedef typename ::boost::multi_index::index<
|
||||
MultiIndexContainer,Tag>::type::const_iterator type;
|
||||
};
|
||||
|
||||
template<
|
||||
@ -767,7 +769,8 @@ project(
|
||||
{
|
||||
typedef multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator> multi_index_type;
|
||||
typedef typename index<multi_index_type,Tag>::type index;
|
||||
typedef typename ::boost::multi_index::index<
|
||||
multi_index_type,Tag>::type index;
|
||||
|
||||
#if !defined(BOOST_MSVC)||!(BOOST_MSVC<1300) /* this ain't work in MSVC++ 6.0 */
|
||||
BOOST_STATIC_ASSERT((
|
||||
@ -801,7 +804,8 @@ project(
|
||||
{
|
||||
typedef multi_index_container<
|
||||
Value,IndexSpecifierList,Allocator> multi_index_type;
|
||||
typedef typename index<multi_index_type,Tag>::type index;
|
||||
typedef typename ::boost::multi_index::index<
|
||||
multi_index_type,Tag>::type index;
|
||||
|
||||
#if !defined(BOOST_MSVC)||!(BOOST_MSVC<1300) /* this ain't work in MSVC++ 6.0 */
|
||||
BOOST_STATIC_ASSERT((
|
||||
|
Loading…
x
Reference in New Issue
Block a user