Changeset 2289
- Timestamp:
- Jun 28, 2010, 5:00:41 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/iterator_test.cc
r2282 r2289 26 26 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 #include "yat/classifier/KernelLookup.h" 28 29 #include "yat/classifier/MatrixLookup.h" 29 30 #include "yat/classifier/MatrixLookupWeighted.h" … … 427 428 double x = *iter; 428 429 x *= 2; // avoid compiler warning 430 431 // ticket #623 432 typedef utility::Container2DIterator<const classifier::KernelLookup, 433 double, const double> c2dIter; 434 BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<c2dIter>)); 435 436 typedef StrideIterator<c2dIter> StrideIter; 437 #ifdef YAT_TICKET_623 438 BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<StrideIter>)); 439 #endif 429 440 } 430 441 }
Note: See TracChangeset
for help on using the changeset viewer.