From e0cb553bfdf0b937ccd35cca7ed93ff3d492f76a Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 17 Sep 2002 15:53:31 +0000 Subject: [PATCH] Suppress __ICL warning [SVN r15412] --- test/for_each.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/for_each.cpp b/test/for_each.cpp index 8c3a3fb..090ad3a 100644 --- a/test/for_each.cpp +++ b/test/for_each.cpp @@ -41,6 +41,10 @@ struct printer std::ostream* f_stream; }; +#ifdef __ICL +# pragma warning(disable:985) +#endif + int main() { typedef mpl::list types;