Hi,
I am trying to use the the multi_index_container i the following ways, but
it is giving problem in ARMV5 compilor.
*1.*
*typedef multi_index_container<*
* xyz,*
* indexed_by<*
* hashed_unique<*
* ckey_t1*
*#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)*
* ,composite_key_result_hash*
* ,composite_key_result_equal_to*
*#endif*
* >*
* >*
* > indexed_t2;*
**
*2.*
*
typedef multi_index_container<
int,
indexed_by<
hashed_unique
hash_container;
3
typedef multi_index_container< int, indexed_by< random_access<>,
sequenced<>,
ordered_non_unique >
> multi_index_t;
multi_index_t m;
4.
typedef multi_index_container< pair_of_ints, indexed_by<
ordered_unique<
BOOST_MULTI_INDEX_MEMBER(pair_of_ints,int,first)
>,ordered_non_unique<
BOOST_MULTI_INDEX_MEMBER(pair_of_ints,int,second)
>, random_access<>, sequenced<>>> multi_index_t;
*
**
**
*5.*
*
typedef multi_index_container<
pair_of_ints,
indexed_by<
ordered_unique,
hashed_unique,
sequenced<> > >
int_int_set;
int_int_set iis;
*
**
**
*6.*
*typedef multi_index_container<
pair_of_ints,
indexed_by<
hashed_unique,
random_access<>,
ordered_unique >
int_int_set;
int_int_set iis;
*
**
**
**
*Please help me on this, send me some useful links...*
**
*thnaks *
*Bijas*
**
**