From 924368a775c699a1a64e4332f5dd5f331828dbc8 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 13 Jul 2005 13:55:32 +0000 Subject: [PATCH] Fix typo [SVN r30046] --- string/example/rle_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string/example/rle_example.cpp b/string/example/rle_example.cpp index 9caae2e..26ec5b8 100644 --- a/string/example/rle_example.cpp +++ b/string/example/rle_example.cpp @@ -59,7 +59,7 @@ struct find_compressF { input_iterator_type It2=It++; - if ( It==End || Cnt>=(std::numeric_limits)::max() ) + if ( It==End || Cnt>=(std::numeric_limits::max)() ) { return result_type( MStart, It ); }