Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:08:36

0001 /*
0002  *
0003  * Copyright (c) 1998-2002
0004  * John Maddock
0005  *
0006  * Use, modification and distribution are subject to the 
0007  * Boost Software License, Version 1.0. (See accompanying file 
0008  * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0009  *
0010  */
0011 
0012  /*
0013   *   LOCATION:    see http://www.boost.org for most recent version.
0014   *   FILE         iterator_traits.cpp
0015   *   VERSION      see <boost/version.hpp>
0016   *   DESCRIPTION: Declares iterator traits workarounds.
0017   */
0018 
0019 #ifndef BOOST_REGEX_V5_ITERATOR_TRAITS_HPP
0020 #define BOOST_REGEX_V5_ITERATOR_TRAITS_HPP
0021 
0022 namespace boost{
0023 namespace BOOST_REGEX_DETAIL_NS{
0024 
0025 template <class T>
0026 struct regex_iterator_traits : public std::iterator_traits<T> {};
0027 
0028 } // namespace BOOST_REGEX_DETAIL_NS
0029 } // namespace boost
0030 
0031 #endif
0032