From 44cfd8169ec0e5633ef7b81aa387970534725c27 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 18 Feb 2001 11:43:01 +0000 Subject: [PATCH] type_traits: regression failure fixes from type traits changes... [SVN r9249] --- include/boost/detail/iterator.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/detail/iterator.hpp b/include/boost/detail/iterator.hpp index 7b73d68..0d9ceff 100644 --- a/include/boost/detail/iterator.hpp +++ b/include/boost/detail/iterator.hpp @@ -70,6 +70,9 @@ using std::iterator_traits; using std::distance; # else +typedef char yes_result; +typedef double no_result; + // Workarounds for less-capable implementations template struct iterator_traits_select;