//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // struct iterator_traits // { // typedef typename Iter::difference_type difference_type; // typedef typename Iter::value_type value_type; // typedef typename Iter::pointer pointer; // typedef typename Iter::reference reference; // typedef typename Iter::iterator_category iterator_category; // }; #include #include struct A {}; struct test_iterator { typedef int difference_type; typedef A value_type; typedef A* pointer; typedef A& reference; typedef std::forward_iterator_tag iterator_category; }; int main() { typedef std::iterator_traits It; static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); }