mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-03 14:54:30 +02:00
iterator tags fix
[SVN r26179]
This commit is contained in:
@@ -18,9 +18,9 @@
|
||||
|
||||
namespace boost { namespace mpl {
|
||||
|
||||
struct forward_iterator_tag : int_<0> {};
|
||||
struct bidirectional_iterator_tag : int_<1> {};
|
||||
struct random_access_iterator_tag : int_<2> {};
|
||||
struct forward_iterator_tag : int_<0> { typedef forward_iterator_tag type; };
|
||||
struct bidirectional_iterator_tag : int_<1> { typedef bidirectional_iterator_tag type; };
|
||||
struct random_access_iterator_tag : int_<2> { typedef random_access_iterator_tag type; };
|
||||
|
||||
}}
|
||||
|
||||
|
Reference in New Issue
Block a user