From 8619c9b5c355e6c6bc1fd4390ab16226b16ac7a6 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 30 Nov 2001 17:55:39 +0000 Subject: [PATCH] fix gcc looping (from Dave Abrahams) [SVN r11839] --- include/boost/operators.hpp | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/include/boost/operators.hpp b/include/boost/operators.hpp index 18223d0..8004a1f 100644 --- a/include/boost/operators.hpp +++ b/include/boost/operators.hpp @@ -894,9 +894,11 @@ template struct forward_iterator_helper - : forward_iteratable > {}; + > > > > {}; template struct bidirectional_iterator_helper - : bidirectional_iteratable > {}; + > > > > {}; template struct random_access_iterator_helper - : random_access_iteratable > + > > > > > > { friend D requires_difference_operator(const T& x, const T& y) { return x - y;