Changeset 3376
- Timestamp:
- Feb 11, 2015, 11:28:17 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/weighted_iterator_archetype.cc
r3314 r3376 2 2 3 3 /* 4 Copyright (C) 2014 Peter Johansson4 Copyright (C) 2014, 2015 Peter Johansson 5 5 6 6 This file is part of the yat library, http://dev.thep.lu.se/yat … … 33 33 34 34 #include "yat/utility/concept_check.h" 35 #include "yat/utility/iterator_traits.h" 35 36 36 37 #include <boost/iterator/iterator_archetypes.hpp> … … 114 115 TraversalCategory> 115 116 ConstIterator; 117 typedef typename utility::weighted_iterator_traits<ConstIterator>::type tag1; 116 118 ConstIterator ci(arg); 117 119 test_const_access(ci); … … 122 124 typedef test::weighted_iterator_archetype<readable_writable_iterator_t, 123 125 TraversalCategory> Iterator; 126 127 typedef typename utility::weighted_iterator_traits<Iterator>::type tag2; 124 128 Iterator i(arg); 125 129 test_access(i);
Note: See TracChangeset
for help on using the changeset viewer.