From 3ad2408d426c47ecd4de180c65bbef4959af4831 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 22 Sep 2001 11:52:24 +0000 Subject: [PATCH] Intel C++ fixes: no void return types supported. [SVN r11199] --- function_test.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/function_test.cpp b/function_test.cpp index 8deaf58..8c2307b 100644 --- a/function_test.cpp +++ b/function_test.cpp @@ -20,6 +20,9 @@ // $Id$ // ------------------------------------------------------------------------------ // $Log$ +// Revision 1.2 2001/09/22 11:52:24 johnmaddock +// Intel C++ fixes: no void return types supported. +// // Revision 1.1.1.1 2000/07/07 16:04:18 beman // 1.16.1 initial CVS checkin // @@ -128,7 +131,7 @@ int main() std::ostream &os = std::cout; -#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION +#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(__ICL) // unary_traits, unary_negate std::transform(v2.begin(), v2.end(), std::ostream_iterator(std::cout, " "),