qualified a symbol causing ambiguity problems in Compaq C++ for Tru64 Unix

[SVN r24671]
This commit is contained in:
Joaquín M. López Muñoz 2004-08-23 14:40:34 +00:00
parent 44dd6da9ad
commit a143eaa27c

View File

@ -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((