Changeset 136:b82dc494bafc in lemon-main for test
- Timestamp:
- 04/17/08 19:33:19 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/maps_test.cc
r123 r136 86 86 checkConcept<ReadWriteMap<A,C>, ConstMap<A,C> >(); 87 87 ConstMap<A,B> map1; 88 ConstMap<A,B> map2 (B());88 ConstMap<A,B> map2 = B(); 89 89 ConstMap<A,B> map3 = map1; 90 90 map1 = constMap<A>(B()); … … 144 144 checkConcept<ReferenceMap<A,B,B&,const B&>, SparseMap<A,B> >(); 145 145 SparseMap<A,B> map1; 146 SparseMap<A,B> map2 (B());146 SparseMap<A,B> map2 = B(); 147 147 SparseMap<A,B> map3 = sparseMap<A,B>(); 148 148 SparseMap<A,B> map4 = sparseMap<A>(B());
Note: See TracChangeset
for help on using the changeset viewer.