From 368b94d804d7d8fa3afb5085a38c07d0db924e22 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 20 Feb 2001 23:15:29 +0000 Subject: [PATCH] Corrected numeric_limits<>::is_integral -> numeric_limits<>::is_integer [SVN r9299] --- counting_iterator.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counting_iterator.htm b/counting_iterator.htm index e337044..40b9668 100644 --- a/counting_iterator.htm +++ b/counting_iterator.htm @@ -282,7 +282,7 @@ template <class Incrementable> struct counting_iterator_traits { if (numeric_limits<Incrementable>::is_specialized) { - if (!numeric_limits<Incrementable>::is_integral) + if (!numeric_limits<Incrementable>::is_integer) COMPILE_TIME_ERROR; if (!numeric_limits<Incrementable>::is_bounded